aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Fischer <[email protected]>2023-12-13 10:45:22 +0100
committerWim Van Sebroeck <[email protected]>2023-12-17 16:14:26 +0100
commitfed7d05382abca82883a8213d42601235073869b (patch)
tree4bd638a7cd72d32462727fcc1ed27494f2d7e82e
parenta79b4a4906b1b0c15a5efc2959bc2086a10a02b5 (diff)
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 <[email protected]> Reviewed-by: Guenter Roeck <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Guenter Roeck <[email protected]> Signed-off-by: Wim Van Sebroeck <[email protected]>
-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);