aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/watchdog/s3c2410_wdt.c
diff options
context:
space:
mode:
authorDmitry Artamonow <mad_soft@inbox.ru>2011-11-16 12:46:13 +0400
committerWim Van Sebroeck <wim@iguana.be>2011-11-16 22:04:17 +0100
commit20403e845f9988446c5b48024ff4d0c3a5929f7d (patch)
treef250fc3f9a188957fca0aa2627b49250dd47a0e1 /drivers/watchdog/s3c2410_wdt.c
parentwatchdog: Don't overwrite error value in wm831x_wdt_set_timeout() (diff)
downloadwireguard-linux-20403e845f9988446c5b48024ff4d0c3a5929f7d.tar.xz
wireguard-linux-20403e845f9988446c5b48024ff4d0c3a5929f7d.zip
watchdog: fix initialisation printout in s3c2410_wdt
Looks like a typo creeped in, and driver prints s3c2410-wdt s3c2410-wdt: watchdog active, reset abled, irq abled instead of s3c2410-wdt s3c2410-wdt: watchdog active, reset enabled, irq enabled Also it may completely disinform about irq status, as it prints "irq enabled" when S3C2410_WTCON_INTEN is in fact 0. Fix it. Signed-off-by: Dmitry Artamonow <mad_soft@inbox.ru> Tested-by: Thomas Abraham <thomas.abraham@linaro.org> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/s3c2410_wdt.c')
-rw-r--r--drivers/watchdog/s3c2410_wdt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/s3c2410_wdt.c b/drivers/watchdog/s3c2410_wdt.c
index 5de7e4fa5b8a..a79e3840782a 100644
--- a/drivers/watchdog/s3c2410_wdt.c
+++ b/drivers/watchdog/s3c2410_wdt.c
@@ -401,8 +401,8 @@ static int __devinit s3c2410wdt_probe(struct platform_device *pdev)
dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
(wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
- (wtcon & S3C2410_WTCON_RSTEN) ? "" : "dis",
- (wtcon & S3C2410_WTCON_INTEN) ? "" : "en");
+ (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
+ (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
return 0;