diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-02-27 00:41:42 -0500 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2014-03-31 07:31:06 -0400 |
commit | 5f5e19093b2fa592720810154f15ffe51aa9277f (patch) | |
tree | 7fb419b6839947540fb76f78243864a1c9838e41 /drivers/watchdog/softdog.c | |
parent | c33a15974c1a326b0034cc2a2e73fac92ae8d001 (diff) |
watchdog: fix checkpatch warnings and error
Fix the following checkpatch warnings and error:
WARNING: quoted string split across lines
WARNING: braces {} are not necessary for single statement blocks
WARNING: __initdata should be placed after ibmasr_id_table[]
WARNING: please, no space before tabs
ERROR: do not initialise statics to 0 or NULL
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/softdog.c')
-rw-r--r-- | drivers/watchdog/softdog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/softdog.c b/drivers/watchdog/softdog.c index c04a1aa158e2..0dc5e323d59d 100644 --- a/drivers/watchdog/softdog.c +++ b/drivers/watchdog/softdog.c | |||
@@ -62,7 +62,7 @@ MODULE_PARM_DESC(nowayout, | |||
62 | "Watchdog cannot be stopped once started (default=" | 62 | "Watchdog cannot be stopped once started (default=" |
63 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); | 63 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
64 | 64 | ||
65 | static int soft_noboot = 0; | 65 | static int soft_noboot; |
66 | module_param(soft_noboot, int, 0); | 66 | module_param(soft_noboot, int, 0); |
67 | MODULE_PARM_DESC(soft_noboot, | 67 | MODULE_PARM_DESC(soft_noboot, |
68 | "Softdog action, set to 1 to ignore reboots, 0 to reboot (default=0)"); | 68 | "Softdog action, set to 1 to ignore reboots, 0 to reboot (default=0)"); |