]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[WATCHDOG] at32ap700x_wdt.c - timeout module parameter patch
authorWim Van Sebroeck <wim@iguana.be>
Mon, 18 Jun 2007 20:49:35 +0000 (22:49 +0200)
committerWim Van Sebroeck <wim@iguana.be>
Thu, 5 Jul 2007 05:31:27 +0000 (05:31 +0000)
integrate the timeout/heartbeat as a module parameter and not as
a CONFIG_* value.

Signed-off-by: Hans-Christian Egtvedt <hcegtvedt@atmel.com>
Cc: Haavard Skinnemoen <hskinnemoen@atmel.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Cc: Andrew Morton <akpm@linux-foundation.org>
drivers/char/watchdog/Kconfig
drivers/char/watchdog/at32ap700x_wdt.c

index 520afb8e523479d662b54c84ed5dd19dbf062804..2f48ba329961ae6eb7537609709e72e412d0aa8d 100644 (file)
@@ -196,17 +196,6 @@ config AT32AP700X_WDT
          Watchdog timer embedded into AT32AP700x devices. This will reboot
          your system when the timeout is reached.
 
-config AT32AP700X_WDT_TIMEOUT
-       int "Timeout value for AT32AP700x watchdog"
-       depends on AT32AP700X_WDT
-       default "2"
-       range 1 2
-       help
-         Sets the timeout value for the watchdog in AT32AP700x devices.
-         Limited by hardware to be 1 or 2 seconds.
-
-         Set to 2 seconds by default.
-
 # X86 (i386 + ia64 + x86_64) Architecture
 
 config ACQUIRE_WDT
index 8abe1c77ac1f10ba9aff36a5fa0838131cd28420..6e7c9588b1b9239cc24af7e3cdb647cde4cac4a2 100644 (file)
 #include <linux/io.h>
 
 #define TIMEOUT_MIN            1
-#define TIMEOUT_DEFAULT                CONFIG_AT32AP700X_WDT_TIMEOUT
 #define TIMEOUT_MAX            2
+#define TIMEOUT_DEFAULT                TIMEOUT_MAX
+
+/* module parameters */
+static int timeout =  TIMEOUT_DEFAULT;
+module_param(timeout, int, 0);
+MODULE_PARM_DESC(timeout,
+               "Timeout value. Limited to be 1 or 2 seconds. (default="
+               __MODULE_STRING(TIMEOUT_DEFAULT) ")");
 
 /* Watchdog registers and write/read macro */
 #define WDT_CTRL               0x00
@@ -233,11 +240,11 @@ static int __init at32_wdt_probe(struct platform_device *pdev)
        wdt->miscdev.name = "watchdog";
        wdt->miscdev.fops = &at32_wdt_fops;
 
-       if (at32_wdt_settimeout(TIMEOUT_DEFAULT)) {
-               at32_wdt_settimeout(TIMEOUT_MAX);
+       if (at32_wdt_settimeout(timeout)) {
+               at32_wdt_settimeout(TIMEOUT_DEFAULT);
                dev_dbg(&pdev->dev,
                        "default timeout invalid, set to %d sec.\n",
-                       TIMEOUT_MAX);
+                       TIMEOUT_DEFAULT);
        }
 
        ret = misc_register(&wdt->miscdev);
@@ -248,7 +255,8 @@ static int __init at32_wdt_probe(struct platform_device *pdev)
 
        platform_set_drvdata(pdev, wdt);
        wdt->miscdev.parent = &pdev->dev;
-       dev_info(&pdev->dev, "AT32AP700X WDT at 0x%p\n", wdt->regs);
+       dev_info(&pdev->dev, "AT32AP700X WDT at 0x%p, timeout %d sec\n",
+               wdt->regs, wdt->timeout);
 
        return 0;