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: 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>
This commit is contained in:
parent
a79b4a4906
commit
fed7d05382
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue