diff options
author | John Crispin <john@openwrt.org> | 2012-11-07 20:25:34 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2012-11-07 20:25:34 +0000 |
commit | ca1fcaed5be02f18bf9c06473e3e554aa6801ab5 (patch) | |
tree | 1abe66efe47fe9848a14f92d7b49eb0babbb9ed6 /target/linux/ramips/patches-3.6/104-ramips-watchdog-driver.patch | |
parent | cc826486008092661ad72a57f3715948501a6f30 (diff) | |
download | upstream-ca1fcaed5be02f18bf9c06473e3e554aa6801ab5.tar.gz upstream-ca1fcaed5be02f18bf9c06473e3e554aa6801ab5.tar.bz2 upstream-ca1fcaed5be02f18bf9c06473e3e554aa6801ab5.zip |
ramips: port patches to linux-3.6
Signed-off-by: Daniel Golle <dgolle@allnet.de>
create mode 100644 target/linux/ramips/patches-3.6/001-mips-add-cp0-compare-irq-function.patch
create mode 100644 target/linux/ramips/patches-3.6/010-mtd_fix_cfi_cmdset_0002_erase_status_check.patch
create mode 100644 target/linux/ramips/patches-3.6/011-mtd-cfi_cmdset_0002-force-word-write.patch
create mode 100644 target/linux/ramips/patches-3.6/100-mips-ralink-core.patch
create mode 100644 target/linux/ramips/patches-3.6/101-rt288x_serial_driver_hack.patch
create mode 100644 target/linux/ramips/patches-3.6/102-rt288x-pci-driver-hook.patch
create mode 100644 target/linux/ramips/patches-3.6/103-ethernet.patch
create mode 100644 target/linux/ramips/patches-3.6/104-ramips-watchdog-driver.patch
create mode 100644 target/linux/ramips/patches-3.6/105-ramips-spi-driver.patch
create mode 100644 target/linux/ramips/patches-3.6/105-usb_dwc_otg.patch
create mode 100644 target/linux/ramips/patches-3.6/106-rt3883-pci-support.patch
create mode 100644 target/linux/ramips/patches-3.6/200-rt3883-ehci-glue.patch
create mode 100644 target/linux/ramips/patches-3.6/201-rt3883-ohci-glue.patch
SVN-Revision: 34108
Diffstat (limited to 'target/linux/ramips/patches-3.6/104-ramips-watchdog-driver.patch')
-rw-r--r-- | target/linux/ramips/patches-3.6/104-ramips-watchdog-driver.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/target/linux/ramips/patches-3.6/104-ramips-watchdog-driver.patch b/target/linux/ramips/patches-3.6/104-ramips-watchdog-driver.patch new file mode 100644 index 0000000000..a7df80b804 --- /dev/null +++ b/target/linux/ramips/patches-3.6/104-ramips-watchdog-driver.patch @@ -0,0 +1,26 @@ +--- a/drivers/watchdog/Kconfig ++++ b/drivers/watchdog/Kconfig +@@ -1064,6 +1064,13 @@ config LANTIQ_WDT + help + Hardware driver for the Lantiq SoC Watchdog Timer. + ++config RAMIPS_WDT ++ tristate "Ralink RT288X/RT305X Watchdog Timer" ++ depends on (SOC_RT288X || SOC_RT305X || SOC_RT3883) ++ help ++ Hardware driver for the built-in watchdog timer on the ++ Ralink RT288X/RT305X SoCs. ++ + # PARISC Architecture + + # POWERPC Architecture +--- a/drivers/watchdog/Makefile ++++ b/drivers/watchdog/Makefile +@@ -132,6 +132,7 @@ obj-$(CONFIG_TXX9_WDT) += txx9wdt.o + obj-$(CONFIG_OCTEON_WDT) += octeon-wdt.o + octeon-wdt-y := octeon-wdt-main.o octeon-wdt-nmi.o + obj-$(CONFIG_LANTIQ_WDT) += lantiq_wdt.o ++obj-$(CONFIG_RAMIPS_WDT) += ramips_wdt.o + + # PARISC Architecture + |