watchdog: it87_wdt: add blank line after variable declaration
authorWerner Fischer <devlists@wefi.net>
Wed, 13 Dec 2023 09:45:22 +0000 (10:45 +0100)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Sun, 17 Dec 2023 15:14:26 +0000 (16:14 +0100)
This patch fixes the following checkpatch.pl warning:

WARNING: Missing a blank line after declarations

Signed-off-by: Werner Fischer <devlists@wefi.net>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20231213094525.11849-1-devlists@wefi.net
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/it87_wdt.c

index e888b1bdd1f2f41dd7bbe464326d224c0439c36e..6b7f7ec0363398511adac94417b7bee82adaabe9 100644 (file)
@@ -146,6 +146,7 @@ static inline void superio_outb(int val, int reg)
 static inline int superio_inw(int reg)
 {
        int val;
+
        outb(reg++, REG);
        val = inb(VAL) << 8;
        outb(reg, REG);