Commit 28562af3 authored by Naveen Gupta's avatar Naveen Gupta Committed by Wim Van Sebroeck

[WATCHDOG] i6300esb.c-WDT_ENABLE-bug

This patch sets the WDT_ENABLE bit of the Lock Register to enable the
watchdog and WDT_LOCK bit only if nowayout is set. The old code always
sets the WDT_LOCK bit of watchdog timer for Intel 6300ESB chipset. So, we
end up locking the watchdog instead of enabling it.
Signed-off-by: default avatarNaveen Gupta <ngupta@google.com>
Signed-off-by: default avatarDavid Hardeman <david@2gen.com>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
parent c69af038
...@@ -97,7 +97,7 @@ static void esb_timer_start(void) ...@@ -97,7 +97,7 @@ static void esb_timer_start(void)
u8 val; u8 val;
/* Enable or Enable + Lock? */ /* Enable or Enable + Lock? */
val = 0x02 | nowayout ? 0x01 : 0x00; val = 0x02 | (nowayout ? 0x01 : 0x00);
pci_write_config_byte(esb_pci, ESB_LOCK_REG, val); pci_write_config_byte(esb_pci, ESB_LOCK_REG, val);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment