From: David Kershner Date: Tue, 28 Mar 2017 13:34:55 +0000 (-0400) Subject: staging: unisys: visorbus: get rid of braces around single statements X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=493d1597dd7029a1a5325748a262bb98696eb97d;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git staging: unisys: visorbus: get rid of braces around single statements Remove braces around single line if statements, they are not needed. Signed-off-by: David Kershner Reviewed-by: Reviewed-by: Tim Sell Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/unisys/visorbus/visorbus_main.c b/drivers/staging/unisys/visorbus/visorbus_main.c index e094a506efc9..4348072211a7 100644 --- a/drivers/staging/unisys/visorbus/visorbus_main.c +++ b/drivers/staging/unisys/visorbus/visorbus_main.c @@ -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; }