Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Werner Fischer and committed by
Wim Van Sebroeck
fed7d053 a79b4a49

+1
+1
drivers/watchdog/it87_wdt.c
··· 146 146 static inline int superio_inw(int reg) 147 147 { 148 148 int val; 149 + 149 150 outb(reg++, REG); 150 151 val = inb(VAL) << 8; 151 152 outb(reg, REG);