aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2014-11-08 16:12:19 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-22 10:53:09 -0800
commitdbd18138a01b0284eaff31490f84735a72986a34 (patch)
treecedc06d19b50a0afb6312b4533bc7cf752487e7e /drivers/staging/lustre
parentstaging: lustre: Remove unnecessary semicolon (diff)
downloadlinux-dev-dbd18138a01b0284eaff31490f84735a72986a34.tar.xz
linux-dev-dbd18138a01b0284eaff31490f84735a72986a34.zip
staging: lustre: Remove unnecessary parentheses.
This patch remove unnecessary parentheses. Signed-off-by: Masanari Iida <standby24x7@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/lustre')
-rw-r--r--drivers/staging/lustre/lustre/lmv/lmv_obd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/lustre/lustre/lmv/lmv_obd.c b/drivers/staging/lustre/lustre/lmv/lmv_obd.c
index 9543c15f990e..dc170d87851b 100644
--- a/drivers/staging/lustre/lustre/lmv/lmv_obd.c
+++ b/drivers/staging/lustre/lustre/lmv/lmv_obd.c
@@ -925,7 +925,7 @@ static int lmv_iocontrol(unsigned int cmd, struct obd_export *exp,
__u32 index;
memcpy(&index, data->ioc_inlbuf2, sizeof(__u32));
- if ((index >= count))
+ if (index >= count)
return -ENODEV;
if (lmv->tgts[index] == NULL ||