staging: lustre: lov: remove unnecessary parentheses
fix checkpatch.pl warning about unnecessary parentheses Signed-off-by: Antonio Murdaca <antonio.murdaca@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6394d6d01b
commit
23191c97c0
|
@ -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])
|
||||
|
|
Loading…
Reference in New Issue