diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-04-27 15:47:46 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-04-27 15:47:46 +0000 |
commit | 4f88f8de81407f05b9eddd550d0b201296d75886 (patch) | |
tree | c9a472d2a95d500d413e0023df04ee10e9ac2e36 /target/linux/brcm47xx/patches-2.6.25/630-ssb-fix-irq-init.patch | |
parent | c2696fb7067d5646e0c6566f00d10b7a4dc856af (diff) | |
download | upstream-4f88f8de81407f05b9eddd550d0b201296d75886.tar.gz upstream-4f88f8de81407f05b9eddd550d0b201296d75886.tar.bz2 upstream-4f88f8de81407f05b9eddd550d0b201296d75886.zip |
brcm47xx: remove 2.6.25 support
SVN-Revision: 15448
Diffstat (limited to 'target/linux/brcm47xx/patches-2.6.25/630-ssb-fix-irq-init.patch')
-rw-r--r-- | target/linux/brcm47xx/patches-2.6.25/630-ssb-fix-irq-init.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/target/linux/brcm47xx/patches-2.6.25/630-ssb-fix-irq-init.patch b/target/linux/brcm47xx/patches-2.6.25/630-ssb-fix-irq-init.patch deleted file mode 100644 index 72505d3e27..0000000000 --- a/target/linux/brcm47xx/patches-2.6.25/630-ssb-fix-irq-init.patch +++ /dev/null @@ -1,24 +0,0 @@ -Subject: [OpenWrt-Devel] [PATCH] ssb-pcicore: Fix IRQ-vector init on embedded devices - -On embedded devices we must not route the interrupts through -the PCI core, if our host-bus is not PCI. - -Reported-by: Steve Brown <sbrown@cortland.com> -Signed-off-by: Michael Buesch <mb@bu3sch.de> - ---- a/drivers/ssb/driver_pcicore.c -+++ b/drivers/ssb/driver_pcicore.c -@@ -519,6 +519,13 @@ int ssb_pcicore_dev_irqvecs_enable(struc - int err = 0; - u32 tmp; - -+ if (dev->bus->bustype != SSB_BUSTYPE_PCI) { -+ /* This SSB device is not on a PCI host-bus. So the IRQs are -+ * not routed through the PCI core. -+ * So we must not enable routing through the PCI core. */ -+ goto out; -+ } -+ - if (!pdev) - goto out; - bus = pdev->bus; |