diff options
Diffstat (limited to 'drivers/watchdog/nuc900_wdt.c')
-rw-r--r-- | drivers/watchdog/nuc900_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/nuc900_wdt.c b/drivers/watchdog/nuc900_wdt.c index 529085b8b8fb..ea4c7448b754 100644 --- a/drivers/watchdog/nuc900_wdt.c +++ b/drivers/watchdog/nuc900_wdt.c | |||
@@ -55,8 +55,8 @@ module_param(heartbeat, int, 0); | |||
55 | MODULE_PARM_DESC(heartbeat, "Watchdog heartbeats in seconds. " | 55 | MODULE_PARM_DESC(heartbeat, "Watchdog heartbeats in seconds. " |
56 | "(default = " __MODULE_STRING(WDT_HEARTBEAT) ")"); | 56 | "(default = " __MODULE_STRING(WDT_HEARTBEAT) ")"); |
57 | 57 | ||
58 | static int nowayout = WATCHDOG_NOWAYOUT; | 58 | static bool nowayout = WATCHDOG_NOWAYOUT; |
59 | module_param(nowayout, int, 0); | 59 | module_param(nowayout, bool, 0); |
60 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " | 60 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started " |
61 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | 61 | "(default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
62 | 62 | ||