aboutsummaryrefslogtreecommitdiffstats
path: root/package/mac80211/patches/552-ath9k_fix_phyerror.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-10-09 15:48:03 +0000
committerFelix Fietkau <nbd@openwrt.org>2011-10-09 15:48:03 +0000
commitadfeb00e5a06d9ea3eb67564e2ccf2022ffdffe6 (patch)
tree4109f2d0bf85e19c62b8c86012b23e4b4e308516 /package/mac80211/patches/552-ath9k_fix_phyerror.patch
parente80e75321fa78976317f414025233a386aa189d0 (diff)
downloadupstream-adfeb00e5a06d9ea3eb67564e2ccf2022ffdffe6.tar.gz
upstream-adfeb00e5a06d9ea3eb67564e2ccf2022ffdffe6.tar.bz2
upstream-adfeb00e5a06d9ea3eb67564e2ccf2022ffdffe6.zip
mac80211: update to wireless-testing 2011-10-05 + pending patches
SVN-Revision: 28392
Diffstat (limited to 'package/mac80211/patches/552-ath9k_fix_phyerror.patch')
-rw-r--r--package/mac80211/patches/552-ath9k_fix_phyerror.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/package/mac80211/patches/552-ath9k_fix_phyerror.patch b/package/mac80211/patches/552-ath9k_fix_phyerror.patch
deleted file mode 100644
index 3ef090e721..0000000000
--- a/package/mac80211/patches/552-ath9k_fix_phyerror.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- a/drivers/net/wireless/ath/ath9k/recv.c
-+++ b/drivers/net/wireless/ath/ath9k/recv.c
-@@ -425,12 +425,9 @@ void ath_rx_cleanup(struct ath_softc *sc
-
- u32 ath_calcrxfilter(struct ath_softc *sc)
- {
--#define RX_FILTER_PRESERVE (ATH9K_RX_FILTER_PHYERR | ATH9K_RX_FILTER_PHYRADAR)
--
- u32 rfilt;
-
-- rfilt = (ath9k_hw_getrxfilter(sc->sc_ah) & RX_FILTER_PRESERVE)
-- | ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
-+ rfilt = ATH9K_RX_FILTER_UCAST | ATH9K_RX_FILTER_BCAST
- | ATH9K_RX_FILTER_MCAST;
-
- if (sc->rx.rxfilter & FIF_PROBE_REQ)
---- a/drivers/net/wireless/ath/ath9k/ani.c
-+++ b/drivers/net/wireless/ath/ath9k/ani.c
-@@ -502,9 +502,6 @@ static void ath9k_ani_reset_old(struct a
- ath9k_hw_ani_control(ah, ATH9K_ANI_CCK_WEAK_SIGNAL_THR,
- ATH9K_ANI_CCK_WEAK_SIG_THR);
-
-- ath9k_hw_setrxfilter(ah, ath9k_hw_getrxfilter(ah) |
-- ATH9K_RX_FILTER_PHYERR);
--
- ath9k_ani_restart(ah);
- return;
- }
-@@ -525,8 +522,6 @@ static void ath9k_ani_reset_old(struct a
- ath9k_hw_ani_control(ah, ATH9K_ANI_FIRSTEP_LEVEL,
- aniState->firstepLevel);
-
-- ath9k_hw_setrxfilter(ah, ath9k_hw_getrxfilter(ah) &
-- ~ATH9K_RX_FILTER_PHYERR);
- ath9k_ani_restart(ah);
-
- ENABLE_REGWRITE_BUFFER(ah);