diff options
-rw-r--r-- | drivers/char/watchdog/w83697hf_wdt.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/drivers/char/watchdog/w83697hf_wdt.c b/drivers/char/watchdog/w83697hf_wdt.c index 1ea43bf2c35d..78b6540e8747 100644 --- a/drivers/char/watchdog/w83697hf_wdt.c +++ b/drivers/char/watchdog/w83697hf_wdt.c | |||
@@ -123,20 +123,18 @@ w83697hf_deselect_wdt(void) | |||
123 | static void | 123 | static void |
124 | w83697hf_init(void) | 124 | w83697hf_init(void) |
125 | { | 125 | { |
126 | unsigned char t; | 126 | unsigned char bbuf; |
127 | 127 | ||
128 | w83697hf_select_wdt(); | 128 | w83697hf_select_wdt(); |
129 | 129 | ||
130 | w83697hf_set_reg(0x29, 0x20); /* Set pin 119 to WDTO# mode (= CR29, WDT0) */ | 130 | bbuf = w83697hf_get_reg(0x29); |
131 | bbuf &= ~0x60; | ||
132 | bbuf |= 0x20; | ||
133 | w83697hf_set_reg(0x29, bbuf); /* Set pin 119 to WDTO# mode (= CR29, WDT0) */ | ||
131 | 134 | ||
132 | t = w83697hf_get_reg(0xF3); /* Read CRF3 */ | 135 | bbuf = w83697hf_get_reg(0xF3); |
133 | if (t != 0) { | 136 | bbuf &= ~0x04; |
134 | printk (KERN_INFO PFX "Watchdog already running. Resetting timeout to %d sec\n", timeout); | 137 | w83697hf_set_reg(0xF3, bbuf); /* Count mode is seconds */ |
135 | w83697hf_set_reg(0xF3, timeout); /* Write new timeout */ | ||
136 | } | ||
137 | t = w83697hf_get_reg(0xF4); /* Read CRF4 */ | ||
138 | t&=~0x0C; /* set second mode & disable keyboard turning off watchdog */ | ||
139 | w83697hf_set_reg(0xF4, t); /* Write back to CRF4 */ | ||
140 | 138 | ||
141 | w83697hf_deselect_wdt(); | 139 | w83697hf_deselect_wdt(); |
142 | } | 140 | } |