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/sp805_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/sp805_wdt.c')
-rw-r--r-- | drivers/watchdog/sp805_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/sp805_wdt.c b/drivers/watchdog/sp805_wdt.c index 2b0939ab61da..49b615a29c4c 100644 --- a/drivers/watchdog/sp805_wdt.c +++ b/drivers/watchdog/sp805_wdt.c | |||
@@ -79,7 +79,7 @@ struct sp805_wdt { | |||
79 | 79 | ||
80 | /* local variables */ | 80 | /* local variables */ |
81 | static struct sp805_wdt *wdt; | 81 | static struct sp805_wdt *wdt; |
82 | static int nowayout = WATCHDOG_NOWAYOUT; | 82 | static bool nowayout = WATCHDOG_NOWAYOUT; |
83 | 83 | ||
84 | /* This routine finds load value that will reset system in required timout */ | 84 | /* This routine finds load value that will reset system in required timout */ |
85 | static void wdt_setload(unsigned int timeout) | 85 | static void wdt_setload(unsigned int timeout) |
@@ -405,7 +405,7 @@ static struct amba_driver sp805_wdt_driver = { | |||
405 | 405 | ||
406 | module_amba_driver(sp805_wdt_driver); | 406 | module_amba_driver(sp805_wdt_driver); |
407 | 407 | ||
408 | module_param(nowayout, int, 0); | 408 | module_param(nowayout, bool, 0); |
409 | MODULE_PARM_DESC(nowayout, | 409 | MODULE_PARM_DESC(nowayout, |
410 | "Set to 1 to keep watchdog running after device release"); | 410 | "Set to 1 to keep watchdog running after device release"); |
411 | 411 | ||