| 1 | --- a/drivers/watchdog/Kconfig |
| 2 | +++ b/drivers/watchdog/Kconfig |
| 3 | @@ -1020,6 +1020,13 @@ config LANTIQ_WDT |
| 4 | help |
| 5 | Hardware driver for the Lantiq SoC Watchdog Timer. |
| 6 | |
| 7 | +config RAMIPS_WDT |
| 8 | + tristate "Ralink RT288X/RT305X Watchdog Timer" |
| 9 | + depends on (SOC_RT288X || SOC_RT305X || SOC_RT3883) |
| 10 | + help |
| 11 | + Hardware driver for the built-in watchdog timer on the |
| 12 | + Ralink RT288X/RT305X SoCs. |
| 13 | + |
| 14 | # PARISC Architecture |
| 15 | |
| 16 | # POWERPC Architecture |
| 17 | --- a/drivers/watchdog/Makefile |
| 18 | +++ b/drivers/watchdog/Makefile |
| 19 | @@ -131,6 +131,7 @@ obj-$(CONFIG_TXX9_WDT) += txx9wdt.o |
| 20 | obj-$(CONFIG_OCTEON_WDT) += octeon-wdt.o |
| 21 | octeon-wdt-y := octeon-wdt-main.o octeon-wdt-nmi.o |
| 22 | obj-$(CONFIG_LANTIQ_WDT) += lantiq_wdt.o |
| 23 | +obj-$(CONFIG_RAMIPS_WDT) += ramips_wdt.o |
| 24 | |
| 25 | # PARISC Architecture |
| 26 | |
| 27 | |