aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/char/watchdog/Kconfig43
-rw-r--r--drivers/char/watchdog/Makefile2
2 files changed, 23 insertions, 22 deletions
diff --git a/drivers/char/watchdog/Kconfig b/drivers/char/watchdog/Kconfig
index c3898afce3ae..f5af900704ac 100644
--- a/drivers/char/watchdog/Kconfig
+++ b/drivers/char/watchdog/Kconfig
@@ -84,6 +84,17 @@ config 977_WATCHDOG
84 84
85 Not sure? It's safe to say N. 85 Not sure? It's safe to say N.
86 86
87config IXP2000_WATCHDOG
88 tristate "IXP2000 Watchdog"
89 depends on WATCHDOG && ARCH_IXP2000
90 help
91 Say Y here if to include support for the watchdog timer
92 in the Intel IXP2000(2400, 2800, 2850) network processors.
93 This driver can be built as a module by choosing M. The module
94 will be called ixp2000_wdt.
95
96 Say N if you are unsure.
97
87config IXP4XX_WATCHDOG 98config IXP4XX_WATCHDOG
88 tristate "IXP4xx Watchdog" 99 tristate "IXP4xx Watchdog"
89 depends on WATCHDOG && ARCH_IXP4XX 100 depends on WATCHDOG && ARCH_IXP4XX
@@ -100,17 +111,6 @@ config IXP4XX_WATCHDOG
100 111
101 Say N if you are unsure. 112 Say N if you are unsure.
102 113
103config IXP2000_WATCHDOG
104 tristate "IXP2000 Watchdog"
105 depends on WATCHDOG && ARCH_IXP2000
106 help
107 Say Y here if to include support for the watchdog timer
108 in the Intel IXP2000(2400, 2800, 2850) network processors.
109 This driver can be built as a module by choosing M. The module
110 will be called ixp2000_wdt.
111
112 Say N if you are unsure.
113
114config S3C2410_WATCHDOG 114config S3C2410_WATCHDOG
115 tristate "S3C2410 Watchdog" 115 tristate "S3C2410 Watchdog"
116 depends on WATCHDOG && ARCH_S3C2410 116 depends on WATCHDOG && ARCH_S3C2410
@@ -353,6 +353,17 @@ config BOOKE_WDT
353 Please see Documentation/watchdog/watchdog-api.txt for 353 Please see Documentation/watchdog/watchdog-api.txt for
354 more information. 354 more information.
355 355
356# PPC64 Architecture
357
358config WATCHDOG_RTAS
359 tristate "RTAS watchdog"
360 depends on WATCHDOG && PPC_RTAS
361 help
362 This driver adds watchdog support for the RTAS watchdog.
363
364 To compile this driver as a module, choose M here. The module
365 will be called wdrtas.
366
356# MIPS Architecture 367# MIPS Architecture
357 368
358config INDYDOG 369config INDYDOG
@@ -421,16 +432,6 @@ config WATCHDOG_RIO
421 machines. The watchdog timeout period is normally one minute but 432 machines. The watchdog timeout period is normally one minute but
422 can be changed with a boot-time parameter. 433 can be changed with a boot-time parameter.
423 434
424# ppc64 RTAS watchdog
425config WATCHDOG_RTAS
426 tristate "RTAS watchdog"
427 depends on WATCHDOG && PPC_RTAS
428 help
429 This driver adds watchdog support for the RTAS watchdog.
430
431 To compile this driver as a module, choose M here. The module
432 will be called wdrtas.
433
434# 435#
435# ISA-based Watchdog Cards 436# ISA-based Watchdog Cards
436# 437#
diff --git a/drivers/char/watchdog/Makefile b/drivers/char/watchdog/Makefile
index cfeac6f10137..fbd5cf63064b 100644
--- a/drivers/char/watchdog/Makefile
+++ b/drivers/char/watchdog/Makefile
@@ -50,10 +50,10 @@ obj-$(CONFIG_MACHZ_WDT) += machzwd.o
50 50
51# PowerPC Architecture 51# PowerPC Architecture
52obj-$(CONFIG_8xx_WDT) += mpc8xx_wdt.o 52obj-$(CONFIG_8xx_WDT) += mpc8xx_wdt.o
53obj-$(CONFIG_BOOKE_WDT) += booke_wdt.o
53 54
54# PPC64 Architecture 55# PPC64 Architecture
55obj-$(CONFIG_WATCHDOG_RTAS) += wdrtas.o 56obj-$(CONFIG_WATCHDOG_RTAS) += wdrtas.o
56obj-$(CONFIG_BOOKE_WDT) += booke_wdt.o
57 57
58# MIPS Architecture 58# MIPS Architecture
59obj-$(CONFIG_INDYDOG) += indydog.o 59obj-$(CONFIG_INDYDOG) += indydog.o