diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2008-11-03 17:43:00 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-11-21 11:06:06 -0500 |
commit | 296bf2aefdf7b4b1bf093a7b42a86ee21b46d07f (patch) | |
tree | 1f43c1c5e05f3b3670b84845a9aece3cccd07975 /drivers/net/wireless/ath5k | |
parent | 6a53a8a99cb044e1873648ba184440db6d9c65b8 (diff) |
ath5k: allow APs to receive beacons
Allow APs to receive beacons to detect when it needs
to use protection to update the NAV correctly on
11b stations.
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath5k')
-rw-r--r-- | drivers/net/wireless/ath5k/base.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/wireless/ath5k/base.c b/drivers/net/wireless/ath5k/base.c index 1ed152f2dec3..34cd1a4a297f 100644 --- a/drivers/net/wireless/ath5k/base.c +++ b/drivers/net/wireless/ath5k/base.c | |||
@@ -2953,9 +2953,9 @@ static void ath5k_configure_filter(struct ieee80211_hw *hw, | |||
2953 | test_bit(ATH_STAT_PROMISC, sc->status)) | 2953 | test_bit(ATH_STAT_PROMISC, sc->status)) |
2954 | rfilt |= AR5K_RX_FILTER_PROM; | 2954 | rfilt |= AR5K_RX_FILTER_PROM; |
2955 | if (sc->opmode == NL80211_IFTYPE_STATION || | 2955 | if (sc->opmode == NL80211_IFTYPE_STATION || |
2956 | sc->opmode == NL80211_IFTYPE_ADHOC) { | 2956 | sc->opmode == NL80211_IFTYPE_ADHOC || |
2957 | sc->opmode == NL80211_IFTYPE_AP) | ||
2957 | rfilt |= AR5K_RX_FILTER_BEACON; | 2958 | rfilt |= AR5K_RX_FILTER_BEACON; |
2958 | } | ||
2959 | if (sc->opmode == NL80211_IFTYPE_MESH_POINT) | 2959 | if (sc->opmode == NL80211_IFTYPE_MESH_POINT) |
2960 | rfilt |= AR5K_RX_FILTER_CONTROL | AR5K_RX_FILTER_BEACON | | 2960 | rfilt |= AR5K_RX_FILTER_CONTROL | AR5K_RX_FILTER_BEACON | |
2961 | AR5K_RX_FILTER_PROBEREQ | AR5K_RX_FILTER_PROM; | 2961 | AR5K_RX_FILTER_PROBEREQ | AR5K_RX_FILTER_PROM; |