summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-3.7/002-MIPS-AR724x-Fix-AR724X_PCI_MEM_SIZE.patch
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-03-04 09:03:50 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-03-04 09:03:50 +0000
commite7b0e9b9305253a5e9f9d156e95c0bf1b1e44a85 (patch)
treecdb5bbd7b5073739fd245dcec5aab478515c649b /target/linux/ar71xx/patches-3.7/002-MIPS-AR724x-Fix-AR724X_PCI_MEM_SIZE.patch
parent1d3c0dd40e71b6aa15d0d8514f797656ffed4a70 (diff)
ar71xx: remove 3.7 support
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35870 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/patches-3.7/002-MIPS-AR724x-Fix-AR724X_PCI_MEM_SIZE.patch')
-rw-r--r--target/linux/ar71xx/patches-3.7/002-MIPS-AR724x-Fix-AR724X_PCI_MEM_SIZE.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/target/linux/ar71xx/patches-3.7/002-MIPS-AR724x-Fix-AR724X_PCI_MEM_SIZE.patch b/target/linux/ar71xx/patches-3.7/002-MIPS-AR724x-Fix-AR724X_PCI_MEM_SIZE.patch
deleted file mode 100644
index ecda5c8b9..000000000
--- a/target/linux/ar71xx/patches-3.7/002-MIPS-AR724x-Fix-AR724X_PCI_MEM_SIZE.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-From 4c960910e2fb3a301ee4a504fa6b2c5204efeab0 Mon Sep 17 00:00:00 2001
-From: Gabor Juhos <juhosg@openwrt.org>
-Date: Tue, 29 Jan 2013 08:27:03 +0000
-Subject: [PATCH] MIPS: AR724x: Fix AR724X_PCI_MEM_SIZE
-
-commit 4c960910e2fb3a301ee4a504fa6b2c5204efeab0 upstream.
-
-The base address of the PCI memory is
-0x10000000 and the base address of the
-PCI configuration space is 0x14000000
-on the AR724x SoCs.
-
-The AR724X_PCI_MEM_SIZE is defined as
-0x08000000 which is wrong because that
-overlaps with the configuration space.
-
-The patch fixes the value of the
-AR724X_PCI_MEM_SIZE constant, in order
-to avoid this resource conflicts.
-
-Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
-Patchwork: http://patchwork.linux-mips.org/patch/4872/
-Signed-off-by: John Crispin <blogic@openwrt.org>
-Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
----
- arch/mips/pci/pci-ar724x.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
---- a/arch/mips/pci/pci-ar724x.c
-+++ b/arch/mips/pci/pci-ar724x.c
-@@ -21,7 +21,7 @@
- #define AR724X_PCI_CTRL_SIZE 0x100
-
- #define AR724X_PCI_MEM_BASE 0x10000000
--#define AR724X_PCI_MEM_SIZE 0x08000000
-+#define AR724X_PCI_MEM_SIZE 0x04000000
-
- #define AR724X_PCI_REG_RESET 0x18
- #define AR724X_PCI_REG_INT_STATUS 0x4c