remove parentheses in returns.

Signed-off-by: Fabian Frederick <f...@skynet.be>
---
 fs/coda/psdev.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fs/coda/psdev.c b/fs/coda/psdev.c
index 8226291..8914ec8 100644
--- a/fs/coda/psdev.c
+++ b/fs/coda/psdev.c
@@ -193,7 +193,7 @@ static ssize_t coda_psdev_write(struct file *file, const 
char __user *buf,
 
         wake_up(&req->uc_sleep);
 out:
-        return(count ? count : retval);  
+       return count ? count : retval;
 }
 
 /*
@@ -261,7 +261,7 @@ static ssize_t coda_psdev_read(struct file * file, char 
__user * buf,
        kfree(req);
 out:
        mutex_unlock(&vcp->vc_mutex);
-       return (count ? count : retval);
+       return count ? count : retval;
 }
 
 static int coda_psdev_open(struct inode * inode, struct file * file)
-- 
1.9.1

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to