Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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])