diff options
author | John Crispin <john@openwrt.org> | 2014-09-12 06:53:27 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-09-12 06:53:27 +0000 |
commit | 4156c9734aa78a7cf41104068363b80345986b5c (patch) | |
tree | 6104833402c3cec8db577140071d816cfabfb0ad /target/linux/atheros/patches-3.14 | |
parent | fb4196ec2af752f6660ee2e813844357c1150552 (diff) | |
download | mtk-20170518-4156c9734aa78a7cf41104068363b80345986b5c.zip mtk-20170518-4156c9734aa78a7cf41104068363b80345986b5c.tar.gz mtk-20170518-4156c9734aa78a7cf41104068363b80345986b5c.tar.bz2 |
atheros: ar2315-pci: rename configuration symbol
Rename configuration symbol to be consistent with other MIPS machines.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 42505
Diffstat (limited to 'target/linux/atheros/patches-3.14')
-rw-r--r-- | target/linux/atheros/patches-3.14/105-ar2315_pci.patch | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/target/linux/atheros/patches-3.14/105-ar2315_pci.patch b/target/linux/atheros/patches-3.14/105-ar2315_pci.patch index 5c437dc..ab87c6a 100644 --- a/target/linux/atheros/patches-3.14/105-ar2315_pci.patch +++ b/target/linux/atheros/patches-3.14/105-ar2315_pci.patch @@ -1,10 +1,11 @@ --- a/arch/mips/ar231x/Makefile +++ b/arch/mips/ar231x/Makefile -@@ -14,3 +14,4 @@ obj-$(CONFIG_EARLY_PRINTK) += early_prin +@@ -14,3 +14,5 @@ obj-$(CONFIG_EARLY_PRINTK) += early_prin obj-$(CONFIG_ATHEROS_AR5312) += ar5312.o obj-$(CONFIG_ATHEROS_AR2315) += ar2315.o -+obj-$(CONFIG_ATHEROS_AR2315_PCI) += pci.o ++obj-$(CONFIG_PCI_AR2315) += pci.o ++ --- /dev/null +++ b/arch/mips/ar231x/pci.c @@ -0,0 +1,340 @@ @@ -355,8 +356,8 @@ depends on ATHEROS_AR231X default y + -+config ATHEROS_AR2315_PCI -+ bool "PCI support" ++config PCI_AR2315 ++ bool "AR2315 PCI controller support" + depends on ATHEROS_AR2315 + select HW_HAS_PCI + select PCI @@ -367,7 +368,7 @@ do_IRQ(AR2315_IRQ_WLAN0_INTRS); else if (pending & CAUSEF_IP4) do_IRQ(AR2315_IRQ_ENET0_INTRS); -+#ifdef CONFIG_ATHEROS_AR2315_PCI ++#ifdef CONFIG_PCI_AR2315 + else if (pending & CAUSEF_IP5) + do_IRQ(AR2315_IRQ_LCBUS_PCI); +#endif |