From: Antonio Murdaca Date: Mon, 1 Jun 2015 21:14:14 +0000 (+0200) Subject: staging: lustre: lov: remove unnecessary parentheses X-Git-Tag: v4.2-rc1~88^2~361 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=23191c97c0f3a07eb45c6c9ecda4fced8fbb0719;p=platform%2Fkernel%2Flinux-exynos.git staging: lustre: lov: remove unnecessary parentheses fix checkpatch.pl warning about unnecessary parentheses Signed-off-by: Antonio Murdaca Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/lov/lov_obd.c b/drivers/staging/lustre/lustre/lov/lov_obd.c index b5dc9e1..ca1caae 100644 --- a/drivers/staging/lustre/lustre/lov/lov_obd.c +++ b/drivers/staging/lustre/lustre/lov/lov_obd.c @@ -1400,7 +1400,7 @@ static int lov_iocontrol(unsigned int cmd, struct obd_export *exp, int len, __u32 flags; memcpy(&index, data->ioc_inlbuf2, sizeof(__u32)); - if ((index >= count)) + if (index >= count) return -ENODEV; if (!lov->lov_tgts[index])