diff options
Diffstat (limited to 'drivers/watchdog/dw_wdt.c')
-rw-r--r-- | drivers/watchdog/dw_wdt.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/drivers/watchdog/dw_wdt.c b/drivers/watchdog/dw_wdt.c index 63d7b58f1c7d..06de1211a444 100644 --- a/drivers/watchdog/dw_wdt.c +++ b/drivers/watchdog/dw_wdt.c | |||
@@ -16,7 +16,8 @@ | |||
16 | * If we receive an expected close for the watchdog then we keep the timer | 16 | * If we receive an expected close for the watchdog then we keep the timer |
17 | * running, otherwise the timer is stopped and the watchdog will expire. | 17 | * running, otherwise the timer is stopped and the watchdog will expire. |
18 | */ | 18 | */ |
19 | #define pr_fmt(fmt) "dw_wdt: " fmt | 19 | |
20 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | ||
20 | 21 | ||
21 | #include <linux/bitops.h> | 22 | #include <linux/bitops.h> |
22 | #include <linux/clk.h> | 23 | #include <linux/clk.h> |
@@ -45,8 +46,8 @@ | |||
45 | /* The maximum TOP (timeout period) value that can be set in the watchdog. */ | 46 | /* The maximum TOP (timeout period) value that can be set in the watchdog. */ |
46 | #define DW_WDT_MAX_TOP 15 | 47 | #define DW_WDT_MAX_TOP 15 |
47 | 48 | ||
48 | static int nowayout = WATCHDOG_NOWAYOUT; | 49 | static bool nowayout = WATCHDOG_NOWAYOUT; |
49 | module_param(nowayout, int, 0); | 50 | module_param(nowayout, bool, 0); |
50 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " | 51 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " |
51 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | 52 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
52 | 53 | ||