summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2010-11-27 22:51:03 +0000
committerFelix Fietkau <nbd@openwrt.org>2010-11-27 22:51:03 +0000
commit87741c5581167193e6b0df77f800eb844b5fa4d4 (patch)
treeadc70145efc38ec50ab2db9b29967297e84e1378
parentfb27da9487421f7e008c6ddb59fb23122dcc51c5 (diff)
downloadmaster-31e0f0ae-87741c5581167193e6b0df77f800eb844b5fa4d4.tar.gz
master-31e0f0ae-87741c5581167193e6b0df77f800eb844b5fa4d4.tar.bz2
master-31e0f0ae-87741c5581167193e6b0df77f800eb844b5fa4d4.zip
ath9k: fix module reload on ar713x based systems with ar92xx
SVN-Revision: 24163
-rw-r--r--package/mac80211/patches/570-ath9k_fix_module_reload.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/mac80211/patches/570-ath9k_fix_module_reload.patch b/package/mac80211/patches/570-ath9k_fix_module_reload.patch
new file mode 100644
index 0000000000..b8fcc994b6
--- /dev/null
+++ b/package/mac80211/patches/570-ath9k_fix_module_reload.patch
@@ -0,0 +1,13 @@
+--- 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);