Commit b9a9693f authored by Kalle Valo's avatar Kalle Valo Committed by Kalle Valo

ath9k: request NOA update when chanctx active

Request NOA update when chanctx active, also in case
of STA.
Signed-off-by: default avatarJanusz Dziedzic <janusz.dziedzic@tieto.com>
Signed-off-by: default avatarKalle Valo <kvalo@qca.qualcomm.com>
parent 8b019fb0
...@@ -1454,7 +1454,7 @@ static void ath9k_update_p2p_ps(struct ath_softc *sc, struct ieee80211_vif *vif) ...@@ -1454,7 +1454,7 @@ static void ath9k_update_p2p_ps(struct ath_softc *sc, struct ieee80211_vif *vif)
if (!sc->p2p_ps_timer) if (!sc->p2p_ps_timer)
return; return;
if (vif->type != NL80211_IFTYPE_STATION || !vif->p2p) if (vif->type != NL80211_IFTYPE_STATION)
return; return;
sc->p2p_ps_vif = avp; sc->p2p_ps_vif = avp;
......
...@@ -978,7 +978,7 @@ static void ath9k_update_bssid_mask(struct ath_softc *sc, ...@@ -978,7 +978,7 @@ static void ath9k_update_bssid_mask(struct ath_softc *sc,
if (ctx->nvifs_assigned != 1) if (ctx->nvifs_assigned != 1)
continue; continue;
if (!avp->vif->p2p || !iter_data->has_hw_macaddr) if (!iter_data->has_hw_macaddr)
continue; continue;
ether_addr_copy(common->curbssid, avp->bssid); ether_addr_copy(common->curbssid, avp->bssid);
...@@ -1255,6 +1255,9 @@ static int ath9k_add_interface(struct ieee80211_hw *hw, ...@@ -1255,6 +1255,9 @@ static int ath9k_add_interface(struct ieee80211_hw *hw,
ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type); ath_dbg(common, CONFIG, "Attach a VIF of type: %d\n", vif->type);
sc->cur_chan->nvifs++; sc->cur_chan->nvifs++;
if (vif->type == NL80211_IFTYPE_STATION && ath9k_is_chanctx_enabled())
vif->driver_flags |= IEEE80211_VIF_GET_NOA_UPDATE;
if (ath9k_uses_beacons(vif->type)) if (ath9k_uses_beacons(vif->type))
ath9k_beacon_assign_slot(sc, vif); ath9k_beacon_assign_slot(sc, vif);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment