From: Masanari Iida Date: Sat, 8 Nov 2014 07:12:19 +0000 (+0900) Subject: staging: lustre: Remove unnecessary parentheses. X-Git-Tag: v3.19-rc1~66^2~242 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbd18138a01b0284eaff31490f84735a72986a34;p=thirdparty%2Fkernel%2Fstable.git staging: lustre: Remove unnecessary parentheses. This patch remove unnecessary parentheses. Signed-off-by: Masanari Iida Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/lmv/lmv_obd.c b/drivers/staging/lustre/lustre/lmv/lmv_obd.c index 9543c15f990e9..dc170d87851b5 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 ||