diff options
author | John Crispin <blogic@openwrt.org> | 2015-01-20 15:48:07 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-01-20 15:48:07 +0000 |
commit | a8facdd1fb2f07642b69314e2d1f2f28e31affb0 (patch) | |
tree | 2a84a6c633abc80b1adef0f591a1594e954c0f1d /target/linux/ar71xx/patches-3.14 | |
parent | eb7d207249fa471e002e2724be30572daea05e3c (diff) | |
download | upstream-a8facdd1fb2f07642b69314e2d1f2f28e31affb0.tar.gz upstream-a8facdd1fb2f07642b69314e2d1f2f28e31affb0.tar.bz2 upstream-a8facdd1fb2f07642b69314e2d1f2f28e31affb0.zip |
ar71xx: add support for TL-WA701ND v2
Signed-off-by: Luigi Tarenga <luigi.tarenga@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44063 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/patches-3.14')
-rw-r--r-- | target/linux/ar71xx/patches-3.14/737-MIPS-ath79-add-TL-WA701NDv2-support.patch | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-3.14/737-MIPS-ath79-add-TL-WA701NDv2-support.patch b/target/linux/ar71xx/patches-3.14/737-MIPS-ath79-add-TL-WA701NDv2-support.patch new file mode 100644 index 0000000000..0796c05b2f --- /dev/null +++ b/target/linux/ar71xx/patches-3.14/737-MIPS-ath79-add-TL-WA701NDv2-support.patch @@ -0,0 +1,45 @@ +Index: linux-3.14.28/arch/mips/ath79/Kconfig +=================================================================== +--- linux-3.14.28.orig/arch/mips/ath79/Kconfig ++++ linux-3.14.28/arch/mips/ath79/Kconfig +@@ -803,6 +803,16 @@ config ATH79_MACH_TL_WAX50RE + select ATH79_DEV_M25P80 + select ATH79_DEV_WMAC + ++config ATH79_MACH_TL_WA701ND_V2 ++ bool "TP-LINK TL-WA701ND v2 support" ++ select SOC_AR933X ++ select ATH79_DEV_ETH ++ select ATH79_DEV_GPIO_BUTTONS ++ select ATH79_DEV_LEDS_GPIO ++ select ATH79_DEV_M25P80 ++ select ATH79_DEV_USB ++ select ATH79_DEV_WMAC ++ + config ATH79_MACH_TL_WA830RE_V2 + bool "TP-LINK TL-WA830RE v2 support" + select SOC_AR934X +Index: linux-3.14.28/arch/mips/ath79/Makefile +=================================================================== +--- linux-3.14.28.orig/arch/mips/ath79/Makefile ++++ linux-3.14.28/arch/mips/ath79/Makefile +@@ -109,6 +109,7 @@ obj-$(CONFIG_ATH79_MACH_TL_MR13U) += mac + obj-$(CONFIG_ATH79_MACH_TL_MR3020) += mach-tl-mr3020.o + obj-$(CONFIG_ATH79_MACH_TL_MR3X20) += mach-tl-mr3x20.o + obj-$(CONFIG_ATH79_MACH_TL_WAX50RE) += mach-tl-wax50re.o ++obj-$(CONFIG_ATH79_MACH_TL_WA701ND_V2) += mach-tl-wa701nd-v2.o + obj-$(CONFIG_ATH79_MACH_TL_WA830RE_V2) += mach-tl-wa830re-v2.o + obj-$(CONFIG_ATH79_MACH_TL_WA901ND) += mach-tl-wa901nd.o + obj-$(CONFIG_ATH79_MACH_TL_WA901ND_V2) += mach-tl-wa901nd-v2.o +Index: linux-3.14.28/arch/mips/ath79/machtypes.h +=================================================================== +--- linux-3.14.28.orig/arch/mips/ath79/machtypes.h ++++ linux-3.14.28/arch/mips/ath79/machtypes.h +@@ -126,6 +126,7 @@ enum ath79_mach_type { + ATH79_MACH_TL_MR3220_V2, /* TP-LINK TL-MR3220 v2 */ + ATH79_MACH_TL_MR3420, /* TP-LINK TL-MR3420 */ + ATH79_MACH_TL_MR3420_V2, /* TP-LINK TL-MR3420 v2 */ ++ ATH79_MACH_TL_WA701ND_V2, /* TP-LINK TL-WA701ND v2 */ + ATH79_MACH_TL_WA750RE, /* TP-LINK TL-WA750RE */ + ATH79_MACH_TL_WA7510N_V1, /* TP-LINK TL-WA7510N v1*/ + ATH79_MACH_TL_WA850RE, /* TP-LINK TL-WA850RE */ |