diff options
Diffstat (limited to 'drivers/watchdog/ks8695_wdt.c')
-rw-r--r-- | drivers/watchdog/ks8695_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/ks8695_wdt.c b/drivers/watchdog/ks8695_wdt.c index 4ee0c7119b45..59e75d9a6b7f 100644 --- a/drivers/watchdog/ks8695_wdt.c +++ b/drivers/watchdog/ks8695_wdt.c | |||
@@ -30,14 +30,14 @@ | |||
30 | #define WDT_MAX_TIME 171 /* seconds */ | 30 | #define WDT_MAX_TIME 171 /* seconds */ |
31 | 31 | ||
32 | static int wdt_time = WDT_DEFAULT_TIME; | 32 | static int wdt_time = WDT_DEFAULT_TIME; |
33 | static int nowayout = WATCHDOG_NOWAYOUT; | 33 | static bool nowayout = WATCHDOG_NOWAYOUT; |
34 | 34 | ||
35 | module_param(wdt_time, int, 0); | 35 | module_param(wdt_time, int, 0); |
36 | MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default=" | 36 | MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default=" |
37 | __MODULE_STRING(WDT_DEFAULT_TIME) ")"); | 37 | __MODULE_STRING(WDT_DEFAULT_TIME) ")"); |
38 | 38 | ||
39 | #ifdef CONFIG_WATCHDOG_NOWAYOUT | 39 | #ifdef CONFIG_WATCHDOG_NOWAYOUT |
40 | module_param(nowayout, int, 0); | 40 | module_param(nowayout, bool, 0); |
41 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" | 41 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" |
42 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | 42 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
43 | #endif | 43 | #endif |