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/sbc_epx_c3.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/sbc_epx_c3.c')
-rw-r--r-- | drivers/watchdog/sbc_epx_c3.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/drivers/watchdog/sbc_epx_c3.c b/drivers/watchdog/sbc_epx_c3.c index e467ddcf796a..af118a142e95 100644 --- a/drivers/watchdog/sbc_epx_c3.c +++ b/drivers/watchdog/sbc_epx_c3.c | |||
@@ -174,8 +174,8 @@ static struct notifier_block epx_c3_notifier = { | |||
174 | .notifier_call = epx_c3_notify_sys, | 174 | .notifier_call = epx_c3_notify_sys, |
175 | }; | 175 | }; |
176 | 176 | ||
177 | static const char banner[] __initdata = | 177 | static const char banner[] __initdata = KERN_INFO PFX |
178 | KERN_INFO PFX "Hardware Watchdog Timer for Winsystems EPX-C3 SBC: 0.1\n"; | 178 | "Hardware Watchdog Timer for Winsystems EPX-C3 SBC: 0.1\n"; |
179 | 179 | ||
180 | static int __init watchdog_init(void) | 180 | static int __init watchdog_init(void) |
181 | { | 181 | { |
@@ -219,6 +219,9 @@ module_init(watchdog_init); | |||
219 | module_exit(watchdog_exit); | 219 | module_exit(watchdog_exit); |
220 | 220 | ||
221 | MODULE_AUTHOR("Calin A. Culianu <calin@ajvar.org>"); | 221 | MODULE_AUTHOR("Calin A. Culianu <calin@ajvar.org>"); |
222 | MODULE_DESCRIPTION("Hardware Watchdog Device for Winsystems EPX-C3 SBC. Note that there is no way to probe for this device -- so only use it if you are *sure* you are runnning on this specific SBC system from Winsystems! It writes to IO ports 0x1ee and 0x1ef!"); | 222 | MODULE_DESCRIPTION("Hardware Watchdog Device for Winsystems EPX-C3 SBC. " |
223 | "Note that there is no way to probe for this device -- " | ||
224 | "so only use it if you are *sure* you are runnning on this specific " | ||
225 | "SBC system from Winsystems! It writes to IO ports 0x1ee and 0x1ef!"); | ||
223 | MODULE_LICENSE("GPL"); | 226 | MODULE_LICENSE("GPL"); |
224 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); | 227 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |