Commit 3dfd6218 authored by Alan Cox's avatar Alan Cox Committed by Wim Van Sebroeck

watchdog: use dev_ functions

While they are registered all our watchdogs now have a valid device object
so we can in turn use that to report problems nicely.
Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Signed-off-by: default avatarWim Van Sebroeck <wim@iguana.be>
parent d6b469d9
...@@ -108,8 +108,7 @@ static int watchdog_stop(struct watchdog_device *wddev) ...@@ -108,8 +108,7 @@ static int watchdog_stop(struct watchdog_device *wddev)
int err = -EBUSY; int err = -EBUSY;
if (test_bit(WDOG_NO_WAY_OUT, &wddev->status)) { if (test_bit(WDOG_NO_WAY_OUT, &wddev->status)) {
pr_info("%s: nowayout prevents watchdog to be stopped!\n", dev_info(wddev->dev, "nowayout prevents watchdog being stopped!\n");
wddev->info->identity);
return err; return err;
} }
...@@ -324,7 +323,7 @@ static int watchdog_release(struct inode *inode, struct file *file) ...@@ -324,7 +323,7 @@ static int watchdog_release(struct inode *inode, struct file *file)
/* If the watchdog was not stopped, send a keepalive ping */ /* If the watchdog was not stopped, send a keepalive ping */
if (err < 0) { if (err < 0) {
pr_crit("%s: watchdog did not stop!\n", wdd->info->identity); dev_crit(wdd->dev, "watchdog did not stop!\n");
watchdog_ping(wdd); watchdog_ping(wdd);
} }
......
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