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:
Antonio Murdaca 2015-06-01 23:14:14 +02:00 committed by Greg Kroah-Hartman
parent 6394d6d01b
commit 23191c97c0
1 changed files with 1 additions and 1 deletions

View File

@ -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])