310-adm5120_wdt.patch 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. --- a/drivers/watchdog/Kconfig
  2. +++ b/drivers/watchdog/Kconfig
  3. @@ -1116,6 +1116,18 @@ config RC32434_WDT
  4. To compile this driver as a module, choose M here: the
  5. module will be called rc32434_wdt.
  6. +config ADM5120_WDT
  7. + tristate "Infineon ADM5120 SoC hardware watchdog"
  8. + depends on WATCHDOG && ADM5120
  9. + help
  10. + This is a driver for hardware watchdog integrated in Infineon
  11. + ADM5120 SoC. This watchdog simply watches your kernel to make sure
  12. + it doesn't freeze, and if it does, it reboots your computer after a
  13. + certain amount of time.
  14. +
  15. + To compile this driver as a module, choose M here: the module will be
  16. + called adm5120_wdt.
  17. +
  18. config INDYDOG
  19. tristate "Indy/I2 Hardware Watchdog"
  20. depends on SGI_HAS_INDYDOG
  21. --- a/drivers/watchdog/Makefile
  22. +++ b/drivers/watchdog/Makefile
  23. @@ -131,6 +131,7 @@ obj-$(CONFIG_ATH79_WDT) += ath79_wdt.o
  24. obj-$(CONFIG_BCM47XX_WDT) += bcm47xx_wdt.o
  25. obj-$(CONFIG_BCM63XX_WDT) += bcm63xx_wdt.o
  26. obj-$(CONFIG_RC32434_WDT) += rc32434_wdt.o
  27. +obj-$(CONFIG_ADM5120_WDT) += adm5120_wdt.o
  28. obj-$(CONFIG_INDYDOG) += indydog.o
  29. obj-$(CONFIG_JZ4740_WDT) += jz4740_wdt.o
  30. obj-$(CONFIG_WDT_MTX1) += mtx-1_wdt.o