aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre/llite/xattr.c
diff options
context:
space:
mode:
authorJulia Lawall <Julia.Lawall@lip6.fr>2014-08-26 22:00:33 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-08-30 12:07:35 -0700
commitfbe7c6c72a8f36e78cf3886573bbc0fdd0aa55b5 (patch)
tree451316a0683e08356240070d6abd2fbb7497dc48 /drivers/staging/lustre/lustre/llite/xattr.c
parentdrivers: staging: lustre: Fix space required after that ',' errors (diff)
downloadlinux-dev-fbe7c6c72a8f36e78cf3886573bbc0fdd0aa55b5.tar.xz
linux-dev-fbe7c6c72a8f36e78cf3886573bbc0fdd0aa55b5.zip
staging: lustre: remove parentheses from return arguments
The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ identifier i; constant c; @@ return - ( \(i\|-i\|i(...)\|c\) - ) ; // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre/lustre/llite/xattr.c')
-rw-r--r--drivers/staging/lustre/lustre/llite/xattr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/llite/xattr.c b/drivers/staging/lustre/lustre/llite/xattr.c
index 665ca572027f..37bd34963689 100644
--- a/drivers/staging/lustre/lustre/llite/xattr.c
+++ b/drivers/staging/lustre/lustre/llite/xattr.c
@@ -526,7 +526,7 @@ out:
ptlrpc_req_finished(request);
else if (lmm)
obd_free_diskmd(ll_i2dtexp(inode), &lmm);
- return(rc);
+ return rc;
}
return ll_getxattr_common(inode, name, buffer, size, OBD_MD_FLXATTR);