aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/octeon-wdt-main.c
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2012-03-05 10:51:11 -0500
committerWim Van Sebroeck <wim@iguana.be>2012-03-27 14:06:02 -0400
commit86a1e1896c2710402e29a875d8d830244274244d (patch)
tree1b27f5107ec51e06921e510c67eeca47ba1b5a66 /drivers/watchdog/octeon-wdt-main.c
parent27c766aaacb265d625dc634bf7903f7f9fd0c697 (diff)
watchdog: nowayout is bool
nowayout is actually a boolean value. So make it bool for all watchdog device drivers. Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/octeon-wdt-main.c')
-rw-r--r--drivers/watchdog/octeon-wdt-main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/octeon-wdt-main.c b/drivers/watchdog/octeon-wdt-main.c
index c5a3ff957b8e..461208831428 100644
--- a/drivers/watchdog/octeon-wdt-main.c
+++ b/drivers/watchdog/octeon-wdt-main.c
@@ -97,8 +97,8 @@ MODULE_PARM_DESC(heartbeat,
97 "Watchdog heartbeat in seconds. (0 < heartbeat, default=" 97 "Watchdog heartbeat in seconds. (0 < heartbeat, default="
98 __MODULE_STRING(WD_TIMO) ")"); 98 __MODULE_STRING(WD_TIMO) ")");
99 99
100static int nowayout = WATCHDOG_NOWAYOUT; 100static bool nowayout = WATCHDOG_NOWAYOUT;
101module_param(nowayout, int, S_IRUGO); 101module_param(nowayout, bool, S_IRUGO);
102MODULE_PARM_DESC(nowayout, 102MODULE_PARM_DESC(nowayout,
103 "Watchdog cannot be stopped once started (default=" 103 "Watchdog cannot be stopped once started (default="
104 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); 104 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");