diff options
-rw-r--r-- | drivers/watchdog/at91sam9_wdt.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/watchdog/at91sam9_wdt.c b/drivers/watchdog/at91sam9_wdt.c index 65f469145950..ab0c4e0165d1 100644 --- a/drivers/watchdog/at91sam9_wdt.c +++ b/drivers/watchdog/at91sam9_wdt.c | |||
@@ -213,7 +213,15 @@ static int at91_wdt_init(struct platform_device *pdev, struct at91wdt *wdt) | |||
213 | tmp & wdt->mr_mask, wdt->mr & wdt->mr_mask); | 213 | tmp & wdt->mr_mask, wdt->mr & wdt->mr_mask); |
214 | 214 | ||
215 | setup_timer(&wdt->timer, at91_ping, (unsigned long)wdt); | 215 | setup_timer(&wdt->timer, at91_ping, (unsigned long)wdt); |
216 | mod_timer(&wdt->timer, jiffies + wdt->heartbeat); | 216 | |
217 | /* | ||
218 | * Use min_heartbeat the first time to avoid spurious watchdog reset: | ||
219 | * we don't know for how long the watchdog counter is running, and | ||
220 | * - resetting it right now might trigger a watchdog fault reset | ||
221 | * - waiting for heartbeat time might lead to a watchdog timeout | ||
222 | * reset | ||
223 | */ | ||
224 | mod_timer(&wdt->timer, jiffies + min_heartbeat); | ||
217 | 225 | ||
218 | /* Try to set timeout from device tree first */ | 226 | /* Try to set timeout from device tree first */ |
219 | if (watchdog_init_timeout(&wdt->wdd, 0, dev)) | 227 | if (watchdog_init_timeout(&wdt->wdd, 0, dev)) |