diff options
| author | Ameya Palande <[email protected]> | 2010-05-17 14:12:15 +0300 |
|---|---|---|
| committer | Wim Van Sebroeck <[email protected]> | 2010-05-25 09:05:46 +0000 |
| commit | bb6f36070cf53ebf08383a026e1d3a437cb310d1 (patch) | |
| tree | 8ebb29832f65be86687a5d6aa7e8bcc725822760 | |
| parent | 4724ba575ea73431aba8a48be6f5a382c470418d (diff) | |
watchdog: twl4030_wdt: Disable watchdog during probing
If we are not able to register then it is better to have
watchdog in disabled state than noticing a system reboot.
Signed-off-by: Ameya Palande <[email protected]>
Acked-By: Timo Kokkonen <[email protected]>
Signed-off-by: Wim Van Sebroeck <[email protected]>
| -rw-r--r-- | drivers/watchdog/twl4030_wdt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/watchdog/twl4030_wdt.c b/drivers/watchdog/twl4030_wdt.c index dcabe77ad141..b5045ca7e61c 100644 --- a/drivers/watchdog/twl4030_wdt.c +++ b/drivers/watchdog/twl4030_wdt.c @@ -190,6 +190,8 @@ static int __devinit twl4030_wdt_probe(struct platform_device *pdev) twl4030_wdt_dev = pdev; + twl4030_wdt_disable(wdt); + ret = misc_register(&wdt->miscdev); if (ret) { dev_err(wdt->miscdev.parent, |