aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2009-12-02 13:21:23 +0100
committerWim Van Sebroeck <wim@iguana.be>2009-12-02 12:47:24 +0000
commit810a90ae4d2a9f6d9ff80424accbd6f91947e981 (patch)
tree2ac955ea549f9b41d601341e68e0c7bc98f830b8 /drivers/watchdog
parent[WATCHDOG] rc32434_wdt.c: use resource_size() (diff)
downloadlinux-dev-810a90ae4d2a9f6d9ff80424accbd6f91947e981.tar.xz
linux-dev-810a90ae4d2a9f6d9ff80424accbd6f91947e981.zip
[PATCH] rc32434_wdt: fix compilation failure
This patch fixes the compilation failure of rc32434 due to a bad module parameter description. Signed-off-by: Florian Fainelli <florian@openwrt.org> Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/rc32434_wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/rc32434_wdt.c b/drivers/watchdog/rc32434_wdt.c
index 3764af11065c..bf12d06b5877 100644
--- a/drivers/watchdog/rc32434_wdt.c
+++ b/drivers/watchdog/rc32434_wdt.c
@@ -62,7 +62,7 @@ extern unsigned int idt_cpu_freq;
static int timeout = WATCHDOG_TIMEOUT;
module_param(timeout, int, 0);
MODULE_PARM_DESC(timeout, "Watchdog timeout value, in seconds (default="
- WATCHDOG_TIMEOUT ")");
+ __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
static int nowayout = WATCHDOG_NOWAYOUT;
module_param(nowayout, int, 0);