diff options
Diffstat (limited to 'drivers/watchdog/omap_wdt.c')
| -rw-r--r-- | drivers/watchdog/omap_wdt.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index d19ff5145e8..8285d65cd20 100644 --- a/drivers/watchdog/omap_wdt.c +++ b/drivers/watchdog/omap_wdt.c @@ -26,6 +26,8 @@   *	Use the driver model and standard identifiers; handle bigger timeouts.   */ +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt +  #include <linux/module.h>  #include <linux/types.h>  #include <linux/kernel.h> @@ -183,7 +185,7 @@ static int omap_wdt_release(struct inode *inode, struct file *file)  	pm_runtime_put_sync(wdev->dev);  #else -	printk(KERN_CRIT "omap_wdt: Unexpected close, not stopping!\n"); +	pr_crit("Unexpected close, not stopping!\n");  #endif  	wdev->omap_wdt_users = 0;  |