Commit fad0a9dd authored by Florian Fainelli's avatar Florian Fainelli Committed by Wim Van Sebroeck

watchdog: mtx1-wdt: use dev_{err,info} instead of printk()

use dev_{err,info} instead of printk(KERN_{ERR,INFO} ...)
Signed-off-by: default avatarFlorian Fainelli <florian@openwrt.org>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent bfbc5e27
...@@ -225,11 +225,11 @@ static int __devinit mtx1_wdt_probe(struct platform_device *pdev) ...@@ -225,11 +225,11 @@ static int __devinit mtx1_wdt_probe(struct platform_device *pdev)
ret = misc_register(&mtx1_wdt_misc); ret = misc_register(&mtx1_wdt_misc);
if (ret < 0) { if (ret < 0) {
printk(KERN_ERR " mtx-1_wdt : failed to register\n"); dev_err(&pdev->dev, "failed to register\n");
return ret; return ret;
} }
mtx1_wdt_start(); mtx1_wdt_start();
printk(KERN_INFO "MTX-1 Watchdog driver\n"); dev_info(&pdev->dev, "MTX-1 Watchdog driver\n");
return 0; return 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment