ath9k: Fix beacons for managed mode
If the current opmode is managed, the ATH_OP_BEACONS flag needs to be set only when there is a primary station interface and it is associated/active. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
12a1b3d4c3
commit
602607b6e7
|
@ -1067,8 +1067,8 @@ void ath9k_calculate_summary_state(struct ath_softc *sc,
|
|||
if (ah->opmode == NL80211_IFTYPE_STATION) {
|
||||
bool changed = (iter_data.primary_sta != ctx->primary_sta);
|
||||
|
||||
iter_data.beacons = true;
|
||||
if (iter_data.primary_sta) {
|
||||
iter_data.beacons = true;
|
||||
ath9k_set_assoc_state(sc, iter_data.primary_sta,
|
||||
changed);
|
||||
if (!ctx->primary_sta ||
|
||||
|
|
Loading…
Reference in New Issue