summaryrefslogtreecommitdiff
path: root/nuttx/drivers/pipe_common.c
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-17 23:23:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-11-17 23:23:45 +0000
commit9b43b70ca6acaa4a9cf455b2d317735eb3cc9b7d (patch)
treeeedd7f865a9c2a8b930d4dea742d3326fb2bc5e5 /nuttx/drivers/pipe_common.c
parent0f6c29f2519e58a54ef0731787a02838d722a4bf (diff)
downloadpx4-nuttx-9b43b70ca6acaa4a9cf455b2d317735eb3cc9b7d.tar.gz
px4-nuttx-9b43b70ca6acaa4a9cf455b2d317735eb3cc9b7d.tar.bz2
px4-nuttx-9b43b70ca6acaa4a9cf455b2d317735eb3cc9b7d.zip
Use FAR storage class
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1270 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/pipe_common.c')
-rw-r--r--nuttx/drivers/pipe_common.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nuttx/drivers/pipe_common.c b/nuttx/drivers/pipe_common.c
index f00705f70..87d496f62 100644
--- a/nuttx/drivers/pipe_common.c
+++ b/nuttx/drivers/pipe_common.c
@@ -519,11 +519,11 @@ ssize_t pipecommon_write(FAR struct file *filep, FAR const char *buffer, size_t
#ifndef CONFIG_DISABLE_POLL
int pipecommon_poll(FAR struct file *filep, FAR struct pollfd *fds)
{
- struct inode *inode = filep->f_inode;
- struct pipe_dev_s *dev = inode->i_private;
- pollevent_t eventset;
- pipe_ndx_t nbytes;
- int i;
+ FAR struct inode *inode = filep->f_inode;
+ FAR struct pipe_dev_s *dev = inode->i_private;
+ pollevent_t eventset;
+ pipe_ndx_t nbytes;
+ int i;
/* Some sanity checking */
#if CONFIG_DEBUG