summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-12-04 01:32:15 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-12-04 01:32:15 +0000
commit8067f3f3cc0f783406cbe1e97c598a35efb2c7c6 (patch)
tree7c1f581608628f9f65a1bb3a4001a5e4fd67a050 /package
parent2a55832f5884d0512556d772b5532aa5737f39ad (diff)
downloadmtk-20170518-8067f3f3cc0f783406cbe1e97c598a35efb2c7c6.zip
mtk-20170518-8067f3f3cc0f783406cbe1e97c598a35efb2c7c6.tar.gz
mtk-20170518-8067f3f3cc0f783406cbe1e97c598a35efb2c7c6.tar.bz2
ar71xx: work around a PCI controller bug which causes reads to the PCI_COMMAND register to return bogus values - properly fixes ath9k module reload issues
SVN-Revision: 24236
Diffstat (limited to 'package')
-rw-r--r--package/mac80211/patches/520-ath9k_pci_error_fix.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/package/mac80211/patches/520-ath9k_pci_error_fix.patch b/package/mac80211/patches/520-ath9k_pci_error_fix.patch
deleted file mode 100644
index b8fcc99..0000000
--- a/package/mac80211/patches/520-ath9k_pci_error_fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/pci.c
-+++ b/drivers/net/wireless/ath/ath9k/pci.c
-@@ -255,6 +255,10 @@ static void ath_pci_remove(struct pci_de
- struct ath_wiphy *aphy = hw->priv;
- struct ath_softc *sc = aphy->sc;
- void __iomem *mem = sc->mem;
-+ u16 val;
-+
-+ /* Do a config read to clear pre-existing pci error status */
-+ pci_read_config_word(pdev, PCI_COMMAND, &val);
-
- ath9k_deinit_device(sc);
- free_irq(sc->irq, sc);