diff options
Diffstat (limited to 'drivers/watchdog/sa1100_wdt.c')
-rw-r--r-- | drivers/watchdog/sa1100_wdt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/watchdog/sa1100_wdt.c b/drivers/watchdog/sa1100_wdt.c index 52a533c274fd..97d9da758dcc 100644 --- a/drivers/watchdog/sa1100_wdt.c +++ b/drivers/watchdog/sa1100_wdt.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <mach/pxa-regs.h> | 31 | #include <mach/pxa-regs.h> |
32 | #endif | 32 | #endif |
33 | 33 | ||
34 | #include <mach/reset.h> | ||
34 | #include <mach/hardware.h> | 35 | #include <mach/hardware.h> |
35 | #include <asm/uaccess.h> | 36 | #include <asm/uaccess.h> |
36 | 37 | ||
@@ -162,7 +163,8 @@ static int __init sa1100dog_init(void) | |||
162 | * we suspend, RCSR will be cleared, and the watchdog | 163 | * we suspend, RCSR will be cleared, and the watchdog |
163 | * reset reason will be lost. | 164 | * reset reason will be lost. |
164 | */ | 165 | */ |
165 | boot_status = (RCSR & RCSR_WDR) ? WDIOF_CARDRESET : 0; | 166 | boot_status = (reset_status & RESET_STATUS_WATCHDOG) ? |
167 | WDIOF_CARDRESET : 0; | ||
166 | pre_margin = OSCR_FREQ * margin; | 168 | pre_margin = OSCR_FREQ * margin; |
167 | 169 | ||
168 | ret = misc_register(&sa1100dog_miscdev); | 170 | ret = misc_register(&sa1100dog_miscdev); |