aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2015-12-24 14:22:00 -0800
committerWim Van Sebroeck <wim@iguana.be>2015-12-28 23:04:04 +0100
commit92b3649525a5c3daf0b395b6daeaed1ce0d235c2 (patch)
tree2b50f68d64fa0e7a79253325ca55acd628ef4858 /drivers/watchdog
parentdevicetree: watchdog: add binding for Sigma Designs SMP8642 watchdog (diff)
downloadlinux-dev-92b3649525a5c3daf0b395b6daeaed1ce0d235c2.tar.xz
linux-dev-92b3649525a5c3daf0b395b6daeaed1ce0d235c2.zip
watchdog: bcm2835_wdt: Drop log message if watchdog is stopped
Stopping a watchdog is a normal operation and does not warrant a log message. Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/bcm2835_wdt.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/watchdog/bcm2835_wdt.c b/drivers/watchdog/bcm2835_wdt.c
index 8a5ce5b5a0b6..2e6164c4abc0 100644
--- a/drivers/watchdog/bcm2835_wdt.c
+++ b/drivers/watchdog/bcm2835_wdt.c
@@ -79,7 +79,6 @@ static int bcm2835_wdt_stop(struct watchdog_device *wdog)
struct bcm2835_wdt *wdt = watchdog_get_drvdata(wdog);
writel_relaxed(PM_PASSWORD | PM_RSTC_RESET, wdt->base + PM_RSTC);
- dev_info(wdog->dev, "Watchdog timer stopped");
return 0;
}