Commit fed7d053 authored by Werner Fischer's avatar Werner Fischer Committed by Wim Van Sebroeck

watchdog: it87_wdt: add blank line after variable declaration

This patch fixes the following checkpatch.pl warning:

WARNING: Missing a blank line after declarations
Signed-off-by: default avatarWerner Fischer <devlists@wefi.net>
Reviewed-by: default avatarGuenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20231213094525.11849-1-devlists@wefi.netSigned-off-by: default avatarGuenter Roeck <linux@roeck-us.net>
Signed-off-by: default avatarWim Van Sebroeck <wim@linux-watchdog.org>
parent a79b4a49
...@@ -146,6 +146,7 @@ static inline void superio_outb(int val, int reg) ...@@ -146,6 +146,7 @@ static inline void superio_outb(int val, int reg)
static inline int superio_inw(int reg) static inline int superio_inw(int reg)
{ {
int val; int val;
outb(reg++, REG); outb(reg++, REG);
val = inb(VAL) << 8; val = inb(VAL) << 8;
outb(reg, REG); outb(reg, REG);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment