aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2006-07-03 03:03:47 -0400
committerWim Van Sebroeck <wim@iguana.be>2006-10-02 17:05:06 -0400
commit2898172708aa84c9b0ce3865d6ff1ef76b538f51 (patch)
tree8c925b3c76b93ff861646e3684d052ad8663b482
parent9325fa36151fb9af39e697a6cd87e82667e2d8f9 (diff)
[WATCHDOG] pnx4008_wdt.c - nowayout patch
Change nowayout to: WATCHDOG_NOWAYOUT as defined in include/linux/watchdog.h . Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
-rw-r--r--drivers/char/watchdog/pnx4008_wdt.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/char/watchdog/pnx4008_wdt.c b/drivers/char/watchdog/pnx4008_wdt.c
index 7ae2d0888218..d36a169c1b86 100644
--- a/drivers/char/watchdog/pnx4008_wdt.c
+++ b/drivers/char/watchdog/pnx4008_wdt.c
@@ -77,11 +77,7 @@
77 77
78#define WDOG_COUNTER_RATE 13000000 /*the counter clock is 13 MHz fixed */ 78#define WDOG_COUNTER_RATE 13000000 /*the counter clock is 13 MHz fixed */
79 79
80#ifdef CONFIG_WATCHDOG_NOWAYOUT 80static int nowayout = WATCHDOG_NOWAYOUT;
81static int nowayout = 1;
82#else
83static int nowayout = 0;
84#endif
85static int heartbeat = DEFAULT_HEARTBEAT; 81static int heartbeat = DEFAULT_HEARTBEAT;
86 82
87static unsigned long wdt_status; 83static unsigned long wdt_status;