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

Commit eb44520b authored by Srikrishan Malik's avatar Srikrishan Malik Committed by Greg Kroah-Hartman
Browse files

staging: lustre: remove parentheses usage with return



Fix the following checkpatch error:

ERROR: return is not a function, parentheses are not required

Signed-off-by: default avatarSrikrishan Malik <srikrishanmalik@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 78dd0798
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2588,7 +2588,7 @@ static int mdc_process_config(struct obd_device *obd, obd_count len, void *buf)
			rc = 0;
		break;
	}
	return(rc);
	return rc;
}