diff options
author | Janusz Dziedzic <janusz.dziedzic@tieto.com> | 2015-11-27 09:37:15 +0100 |
---|---|---|
committer | Kalle Valo <kvalo@qca.qualcomm.com> | 2015-12-08 15:50:58 +0100 |
commit | a64d876ef7dc33a7e3c52b06db2c2a55ff8ac785 (patch) | |
tree | e6239794522cd41144748a93003436f48de5d560 /drivers/net/wireless/ath/ath9k/beacon.c | |
parent | ath9k: P2P_CLIENT, get/set NOA correctly (diff) | |
download | linux-a64d876ef7dc33a7e3c52b06db2c2a55ff8ac785.tar.xz linux-a64d876ef7dc33a7e3c52b06db2c2a55ff8ac785.zip |
ath9k: MCC, add NOA also in case of an AP
In case of MCC and AP interface, add also NOA attr
that will inform stations about absence of an AP.
There is a chance that some stations will handle
this NOA attr correctly and will know exactly when
AP is present/absent.
Signed-off-by: Janusz Dziedzic <janusz.dziedzic@tieto.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/beacon.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/beacon.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/beacon.c b/drivers/net/wireless/ath/ath9k/beacon.c index f50a6bc5d06e..5cf0cd7cb2d1 100644 --- a/drivers/net/wireless/ath/ath9k/beacon.c +++ b/drivers/net/wireless/ath/ath9k/beacon.c @@ -148,7 +148,8 @@ static struct ath_buf *ath9k_beacon_generate(struct ieee80211_hw *hw, ath_assign_seq(common, skb); - if (vif->p2p) + /* Always assign NOA attr when MCC enabled */ + if (ath9k_is_chanctx_enabled()) ath9k_beacon_add_noa(sc, avp, skb); bf->bf_buf_addr = dma_map_single(sc->dev, skb->data, |