summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-3.6/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-01-12 12:25:38 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2013-01-12 12:25:38 +0000
commit442097207630571ba46ea98f1a0a7e5e340b2a5e (patch)
treed790e392e1f96d29c16378347560ec27af8b2cde /target/linux/ar71xx/patches-3.6/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch
parent02e476df9265dcfd81b2daa9d073cf305882b69f (diff)
ar71xx: remove 3.6 support
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35114 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/patches-3.6/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch')
-rw-r--r--target/linux/ar71xx/patches-3.6/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/target/linux/ar71xx/patches-3.6/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch b/target/linux/ar71xx/patches-3.6/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch
deleted file mode 100644
index bd95d718b..000000000
--- a/target/linux/ar71xx/patches-3.6/169-MIPS-ath79-allow-to-specify-bus-number-in-PCI-IRQ-ma.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 12c68e4fccadc22a0470177141a57892a76e4a2b Mon Sep 17 00:00:00 2001
-From: Gabor Juhos <juhosg@openwrt.org>
-Date: Sun, 24 Jun 2012 15:33:16 +0200
-Subject: [PATCH 25/34] MIPS: ath79: allow to specify bus number in PCI IRQ maps
-
-Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
----
- arch/mips/ath79/pci.c | 4 +++-
- arch/mips/ath79/pci.h | 1 +
- 2 files changed, 4 insertions(+), 1 deletions(-)
-
---- a/arch/mips/ath79/pci.c
-+++ b/arch/mips/ath79/pci.c
-@@ -75,7 +75,9 @@ int __init pcibios_map_irq(const struct
- const struct ath79_pci_irq *entry;
-
- entry = &ath79_pci_irq_map[i];
-- if (entry->slot == slot && entry->pin == pin) {
-+ if (entry->bus == dev->bus->number &&
-+ entry->slot == slot &&
-+ entry->pin == pin) {
- irq = entry->irq;
- break;
- }
---- a/arch/mips/ath79/pci.h
-+++ b/arch/mips/ath79/pci.h
-@@ -14,6 +14,7 @@
- #define _ATH79_PCI_H
-
- struct ath79_pci_irq {
-+ int bus;
- u8 slot;
- u8 pin;
- int irq;