diff options
Diffstat (limited to 'drivers/watchdog/pika_wdt.c')
-rw-r--r-- | drivers/watchdog/pika_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/pika_wdt.c b/drivers/watchdog/pika_wdt.c index e2877623ac44..7d3d471f810c 100644 --- a/drivers/watchdog/pika_wdt.c +++ b/drivers/watchdog/pika_wdt.c | |||
@@ -39,8 +39,8 @@ module_param(heartbeat, int, 0); | |||
39 | MODULE_PARM_DESC(heartbeat, "Watchdog heartbeats in seconds. " | 39 | MODULE_PARM_DESC(heartbeat, "Watchdog heartbeats in seconds. " |
40 | "(default = " __MODULE_STRING(WDT_HEARTBEAT) ")"); | 40 | "(default = " __MODULE_STRING(WDT_HEARTBEAT) ")"); |
41 | 41 | ||
42 | static int nowayout = WATCHDOG_NOWAYOUT; | 42 | static bool nowayout = WATCHDOG_NOWAYOUT; |
43 | module_param(nowayout, int, 0); | 43 | module_param(nowayout, bool, 0); |
44 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " | 44 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " |
45 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | 45 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
46 | 46 | ||