diff options
author | Florian Fainelli <florian@openwrt.org> | 2011-06-15 19:15:09 +0200 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2011-07-22 08:59:43 +0000 |
commit | fad0a9dd0da2dc9971e0e71f41134c791f2030c2 (patch) | |
tree | 8466715d4f2fa62a15de943b6280660c2b7bf7ac /drivers/watchdog | |
parent | bfbc5e272d8aa92f6f9b05361e76e87075111e48 (diff) |
watchdog: mtx1-wdt: use dev_{err,info} instead of printk()
use dev_{err,info} instead of printk(KERN_{ERR,INFO} ...)
Signed-off-by: Florian Fainelli <florian@openwrt.org>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/mtx-1_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/mtx-1_wdt.c b/drivers/watchdog/mtx-1_wdt.c index 0430e093b1a..ac37bb82392 100644 --- a/drivers/watchdog/mtx-1_wdt.c +++ b/drivers/watchdog/mtx-1_wdt.c @@ -225,11 +225,11 @@ static int __devinit mtx1_wdt_probe(struct platform_device *pdev) ret = misc_register(&mtx1_wdt_misc); if (ret < 0) { - printk(KERN_ERR " mtx-1_wdt : failed to register\n"); + dev_err(&pdev->dev, "failed to register\n"); return ret; } mtx1_wdt_start(); - printk(KERN_INFO "MTX-1 Watchdog driver\n"); + dev_info(&pdev->dev, "MTX-1 Watchdog driver\n"); return 0; } |