aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authordann frazier <dannf@hp.com>2010-07-27 19:50:54 -0400
committerWim Van Sebroeck <wim@iguana.be>2010-08-13 16:54:27 -0400
commit550d299eeb39cf8e2d12700585c490696ba34be8 (patch)
treea70e1128a3523d5d4f7d57cda797bee09a741e29 /drivers/watchdog
parenta52e6d181d10202712fb8dc7e397a80599133733 (diff)
watchdog: hpwdt (2/12): Group options that affect watchdog behavior together
Reorganization only. Signed-off-by: dann frazier <dannf@hp.com> Acked-by: Thomas Mingarelli <Thomas.Mingarelli@hp.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/hpwdt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/hpwdt.c b/drivers/watchdog/hpwdt.c
index 183b7a4525bd..0ad9af2e0667 100644
--- a/drivers/watchdog/hpwdt.c
+++ b/drivers/watchdog/hpwdt.c
@@ -794,13 +794,13 @@ MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
794module_param(soft_margin, int, 0); 794module_param(soft_margin, int, 0);
795MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds"); 795MODULE_PARM_DESC(soft_margin, "Watchdog timeout in seconds");
796 796
797module_param(allow_kdump, int, 0);
798MODULE_PARM_DESC(allow_kdump, "Start a kernel dump after NMI occurs");
799
800module_param(nowayout, int, 0); 797module_param(nowayout, int, 0);
801MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" 798MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
802 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); 799 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
803 800
801module_param(allow_kdump, int, 0);
802MODULE_PARM_DESC(allow_kdump, "Start a kernel dump after NMI occurs");
803
804module_param(priority, int, 0); 804module_param(priority, int, 0);
805MODULE_PARM_DESC(priority, "The hpwdt driver handles NMIs first or last" 805MODULE_PARM_DESC(priority, "The hpwdt driver handles NMIs first or last"
806 " (default = 0/Last)\n"); 806 " (default = 0/Last)\n");