staging: lustre: Remove unnecessary parentheses.
authorMasanari Iida <standby24x7@gmail.com>
Sat, 8 Nov 2014 07:12:19 +0000 (16:12 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 Nov 2014 18:53:09 +0000 (10:53 -0800)
This patch remove unnecessary parentheses.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/lmv/lmv_obd.c

index 9543c15f990e9b527427f9b6f8c6b90d56b87efa..dc170d87851b53c191474f1c26add735c11dcfa2 100644 (file)
@@ -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 ||