aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/watchdog
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/char/watchdog')
-rw-r--r--drivers/char/watchdog/i6300esb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/watchdog/i6300esb.c b/drivers/char/watchdog/i6300esb.c
index 20ceb5fe28b6..f0e96fbd6489 100644
--- a/drivers/char/watchdog/i6300esb.c
+++ b/drivers/char/watchdog/i6300esb.c
@@ -97,7 +97,7 @@ static void esb_timer_start(void)
97 u8 val; 97 u8 val;
98 98
99 /* Enable or Enable + Lock? */ 99 /* Enable or Enable + Lock? */
100 val = 0x02 | nowayout ? 0x01 : 0x00; 100 val = 0x02 | (nowayout ? 0x01 : 0x00);
101 101
102 pci_write_config_byte(esb_pci, ESB_LOCK_REG, val); 102 pci_write_config_byte(esb_pci, ESB_LOCK_REG, val);
103} 103}