diff options
author | Florian Fainelli <florian@openwrt.org> | 2011-06-15 13:15:09 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2011-07-22 04:59:43 -0400 |
commit | fad0a9dd0da2dc9971e0e71f41134c791f2030c2 (patch) | |
tree | 8466715d4f2fa62a15de943b6280660c2b7bf7ac /drivers/watchdog/mtx-1_wdt.c | |
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/mtx-1_wdt.c')
-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 0430e093b1a0..ac37bb82392c 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) | |||
225 | 225 | ||
226 | ret = misc_register(&mtx1_wdt_misc); | 226 | ret = misc_register(&mtx1_wdt_misc); |
227 | if (ret < 0) { | 227 | if (ret < 0) { |
228 | printk(KERN_ERR " mtx-1_wdt : failed to register\n"); | 228 | dev_err(&pdev->dev, "failed to register\n"); |
229 | return ret; | 229 | return ret; |
230 | } | 230 | } |
231 | mtx1_wdt_start(); | 231 | mtx1_wdt_start(); |
232 | printk(KERN_INFO "MTX-1 Watchdog driver\n"); | 232 | dev_info(&pdev->dev, "MTX-1 Watchdog driver\n"); |
233 | return 0; | 233 | return 0; |
234 | } | 234 | } |
235 | 235 | ||