can: softing: softing_card_shutdown(): add braces around empty body in an 'if' statement
authorMarc Kleine-Budde <mkl@pengutronix.de>
Tue, 6 Oct 2020 15:19:31 +0000 (17:19 +0200)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Tue, 6 Oct 2020 20:44:03 +0000 (22:44 +0200)
This patch fixes the following warning when building the kernel with "W=1":

    warning: suggest braces around empty body in an ‘if’ statement [-Wempty-body]

Link: http://lore.kernel.org/r/20201006203748.1750156-3-mkl@pengutronix.de
Fixes: 03fd3cf5a179 ("can: add driver for Softing card")
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/softing/softing_main.c

index 11b0f3b..9d2faaa 100644 (file)
@@ -447,8 +447,9 @@ static void softing_card_shutdown(struct softing *card)
 {
        int fw_up = 0;
 
-       if (mutex_lock_interruptible(&card->fw.lock))
+       if (mutex_lock_interruptible(&card->fw.lock)) {
                /* return -ERESTARTSYS */;
+       }
        fw_up = card->fw.up;
        card->fw.up = 0;