diff options
author | Wim Van Sebroeck <wim@iguana.be> | 2009-04-14 16:20:07 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2009-06-18 03:30:30 -0400 |
commit | a77dba7e444a6618cbb666d1b42b79842b9c0171 (patch) | |
tree | f8e16e2515e83eba774fd06bfca1080c7fa46adc /drivers/watchdog/softdog.c | |
parent | 0a7e658226d66a259097db5f4734589604b303fd (diff) |
[WATCHDOG] Some more general cleanup
Clean-up the watchdog drivers so that checkpatch.pl get's happy...
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/softdog.c')
-rw-r--r-- | drivers/watchdog/softdog.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/watchdog/softdog.c b/drivers/watchdog/softdog.c index ebcc9cea5e99..833f49f43d43 100644 --- a/drivers/watchdog/softdog.c +++ b/drivers/watchdog/softdog.c | |||
@@ -71,7 +71,9 @@ static int soft_noboot = 0; | |||
71 | #endif /* ONLY_TESTING */ | 71 | #endif /* ONLY_TESTING */ |
72 | 72 | ||
73 | module_param(soft_noboot, int, 0); | 73 | module_param(soft_noboot, int, 0); |
74 | MODULE_PARM_DESC(soft_noboot, "Softdog action, set to 1 to ignore reboots, 0 to reboot (default depends on ONLY_TESTING)"); | 74 | MODULE_PARM_DESC(soft_noboot, |
75 | "Softdog action, set to 1 to ignore reboots, 0 to reboot " | ||
76 | "(default depends on ONLY_TESTING)"); | ||
75 | 77 | ||
76 | /* | 78 | /* |
77 | * Our timer | 79 | * Our timer |
@@ -264,7 +266,8 @@ static struct notifier_block softdog_notifier = { | |||
264 | .notifier_call = softdog_notify_sys, | 266 | .notifier_call = softdog_notify_sys, |
265 | }; | 267 | }; |
266 | 268 | ||
267 | static char banner[] __initdata = KERN_INFO "Software Watchdog Timer: 0.07 initialized. soft_noboot=%d soft_margin=%d sec (nowayout= %d)\n"; | 269 | static char banner[] __initdata = KERN_INFO "Software Watchdog Timer: 0.07 " |
270 | "initialized. soft_noboot=%d soft_margin=%d sec (nowayout= %d)\n"; | ||
268 | 271 | ||
269 | static int __init watchdog_init(void) | 272 | static int __init watchdog_init(void) |
270 | { | 273 | { |