Browse Source

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>
Masanari Iida 10 years ago
parent
commit
dbd18138a0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/staging/lustre/lustre/lmv/lmv_obd.c

+ 1 - 1
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 ||