Commit 23191c97 authored by Antonio Murdaca's avatar Antonio Murdaca Committed by Greg Kroah-Hartman

staging: lustre: lov: remove unnecessary parentheses

fix checkpatch.pl warning about unnecessary parentheses
Signed-off-by: default avatarAntonio Murdaca <antonio.murdaca@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 6394d6d0
......@@ -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])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment