From 6fde1cb1705695a020adb6ccb463d7c2e2ae7177 Mon Sep 17 00:00:00 2001 From: patacongo Date: Mon, 17 Nov 2008 23:23:45 +0000 Subject: [PATCH] Use FAR storage class git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1270 42af7a65-404d-4744-a932-0658087f49c3 --- drivers/pipe_common.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/pipe_common.c b/drivers/pipe_common.c index f00705f70e..87d496f62f 100644 --- a/drivers/pipe_common.c +++ b/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