watchdog: f71808e_wdt: Fix WD_EN register read
F71808FG_FLAG_WD_EN defines bit position, not a bitmask Signed-off-by: Igor Pylypiv <igor.pylypiv@gmail.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be> Cc: stable <stable@vger.kernel.org>
This commit is contained in:
parent
2b3d89b402
commit
977f6f6833
|
@ -496,7 +496,7 @@ static bool watchdog_is_running(void)
|
||||||
|
|
||||||
is_running = (superio_inb(watchdog.sioaddr, SIO_REG_ENABLE) & BIT(0))
|
is_running = (superio_inb(watchdog.sioaddr, SIO_REG_ENABLE) & BIT(0))
|
||||||
&& (superio_inb(watchdog.sioaddr, F71808FG_REG_WDT_CONF)
|
&& (superio_inb(watchdog.sioaddr, F71808FG_REG_WDT_CONF)
|
||||||
& F71808FG_FLAG_WD_EN);
|
& BIT(F71808FG_FLAG_WD_EN));
|
||||||
|
|
||||||
superio_exit(watchdog.sioaddr);
|
superio_exit(watchdog.sioaddr);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue