projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be1066b
)
watchdog: ep93xx_wdt.c fix default timout value in MODULE_PARM_DESC string.
author
Wim Van Sebroeck
<
[email protected]
>
Mon, 3 May 2010 08:58:56 +0000
(08:58 +0000)
committer
Wim Van Sebroeck
<
[email protected]
>
Mon, 3 May 2010 08:58:56 +0000
(08:58 +0000)
The WATCHDOG_TIMEOUT macro does not exist. The default timeout value is WDT_TIMEOUT.
Fix the MODULE_PARM_DESC so that the code can compile again.
reported-by: Randy Dunlap <
[email protected]
>
Signed-off-by: Wim Van Sebroeck <
[email protected]
>
drivers/watchdog/ep93xx_wdt.c
patch
|
blob
|
history
diff --git
a/drivers/watchdog/ep93xx_wdt.c
b/drivers/watchdog/ep93xx_wdt.c
index 88ed54e50f74d3768b75fb05485393da4042aa62..59359c9a5e01aafaaa43cba6c8a3fd1ca4842e1c 100644
(file)
--- a/
drivers/watchdog/ep93xx_wdt.c
+++ b/
drivers/watchdog/ep93xx_wdt.c
@@
-244,7
+244,7
@@
MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started");
module_param(timeout, int, 0);
MODULE_PARM_DESC(timeout,
"Watchdog timeout in seconds. (1<=timeout<=3600, default="
- __MODULE_STRING(W
ATCHDOG
_TIMEOUT) ")");
+ __MODULE_STRING(W
DT
_TIMEOUT) ")");
MODULE_AUTHOR("Ray Lehtiniemi <
[email protected]
>,"
"Alessandro Zummo <
[email protected]
>");