aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorWerner Fischer <devlists@wefi.net>2023-12-13 10:45:22 +0100
committerWim Van Sebroeck <wim@linux-watchdog.org>2023-12-17 16:14:26 +0100
commitfed7d05382abca82883a8213d42601235073869b (patch)
tree4bd638a7cd72d32462727fcc1ed27494f2d7e82e /drivers/watchdog
parentdt-bindings: wdt: Add ts72xx (diff)
downloadwireguard-linux-fed7d05382abca82883a8213d42601235073869b.tar.xz
wireguard-linux-fed7d05382abca82883a8213d42601235073869b.zip
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>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/it87_wdt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/it87_wdt.c b/drivers/watchdog/it87_wdt.c
index e888b1bdd1f2..6b7f7ec03633 100644
--- a/drivers/watchdog/it87_wdt.c
+++ b/drivers/watchdog/it87_wdt.c
@@ -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);