Commit 493d1597 authored by David Kershner's avatar David Kershner Committed by Greg Kroah-Hartman
Browse files

staging: unisys: visorbus: get rid of braces around single statements



Remove braces around single line if statements, they are not needed.

Signed-off-by: default avatarDavid Kershner <david.kershner@unisys.com>
Reviewed-by: default avatarReviewed-by: Tim Sell <timothy.sell@unisys.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b4a8e6ae
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -710,9 +710,9 @@ get_vbus_header_info(struct visorchannel *chan,
		return -EINVAL;

	if (hdr_info->device_info_struct_bytes <
	    sizeof(struct ultra_vbus_deviceinfo)) {
	    sizeof(struct ultra_vbus_deviceinfo))
		return -EINVAL;
	}

	return 0;
}