diff options
author | Wim Van Sebroeck <wim@iguana.be> | 2012-03-05 10:51:11 -0500 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-03-27 14:06:02 -0400 |
commit | 86a1e1896c2710402e29a875d8d830244274244d (patch) | |
tree | 1b27f5107ec51e06921e510c67eeca47ba1b5a66 /drivers/watchdog/smsc37b787_wdt.c | |
parent | 27c766aaacb265d625dc634bf7903f7f9fd0c697 (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/smsc37b787_wdt.c')
-rw-r--r-- | drivers/watchdog/smsc37b787_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/smsc37b787_wdt.c b/drivers/watchdog/smsc37b787_wdt.c index 5e4d3734b516..4c3400574ada 100644 --- a/drivers/watchdog/smsc37b787_wdt.c +++ b/drivers/watchdog/smsc37b787_wdt.c | |||
@@ -86,7 +86,7 @@ static char expect_close; /* is the close expected? */ | |||
86 | 86 | ||
87 | static DEFINE_SPINLOCK(io_lock);/* to guard the watchdog from io races */ | 87 | static DEFINE_SPINLOCK(io_lock);/* to guard the watchdog from io races */ |
88 | 88 | ||
89 | static int nowayout = WATCHDOG_NOWAYOUT; | 89 | static bool nowayout = WATCHDOG_NOWAYOUT; |
90 | 90 | ||
91 | /* -- Low level function ----------------------------------------*/ | 91 | /* -- Low level function ----------------------------------------*/ |
92 | 92 | ||
@@ -615,7 +615,7 @@ MODULE_PARM_DESC(unit, | |||
615 | module_param(timeout, int, 0); | 615 | module_param(timeout, int, 0); |
616 | MODULE_PARM_DESC(timeout, "range is 1-255 units, default is 60"); | 616 | MODULE_PARM_DESC(timeout, "range is 1-255 units, default is 60"); |
617 | 617 | ||
618 | module_param(nowayout, int, 0); | 618 | module_param(nowayout, bool, 0); |
619 | MODULE_PARM_DESC(nowayout, | 619 | MODULE_PARM_DESC(nowayout, |
620 | "Watchdog cannot be stopped once started (default=" | 620 | "Watchdog cannot be stopped once started (default=" |
621 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | 621 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |