Index: chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/main.c |
diff --git a/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/main.c b/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/main.c |
index 837bdfb68307ad728e9386c1560fb092d37bddd8..377b287f35f195e88fa75104b2b28701a193cc7d 100644 |
--- a/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/main.c |
+++ b/chromeos/compat-wireless/drivers/net/wireless/ath/ath9k/main.c |
@@ -254,14 +254,12 @@ int ath_set_channel(struct ath_softc *sc, struct ieee80211_hw *hw, |
ath_update_txpow(sc); |
ath9k_hw_set_interrupts(ah, ah->imask); |
- if (!(sc->sc_flags & (SC_OP_OFFCHANNEL | SC_OP_SCANNING))) { |
- ath_start_ani(common); |
+ if (!(sc->sc_flags & (SC_OP_OFFCHANNEL))) { |
+ ath_beacon_config(sc, NULL); |
ieee80211_queue_delayed_work(sc->hw, &sc->tx_complete_work, 0); |
+ ath_start_ani(common); |
} |
- if (!(sc->sc_flags & (SC_OP_OFFCHANNEL))) |
- ath_beacon_config(sc, NULL); |
- |
ps_restore: |
ath9k_ps_restore(sc); |
return r; |
@@ -2037,7 +2035,6 @@ static void ath9k_sw_scan_start(struct ieee80211_hw *hw) |
aphy->state = ATH_WIPHY_SCAN; |
ath9k_wiphy_pause_all_forced(sc, aphy); |
- sc->sc_flags |= SC_OP_SCANNING; |
mutex_unlock(&sc->mutex); |
} |
@@ -2052,7 +2049,6 @@ static void ath9k_sw_scan_complete(struct ieee80211_hw *hw) |
mutex_lock(&sc->mutex); |
aphy->state = ATH_WIPHY_ACTIVE; |
- sc->sc_flags &= ~SC_OP_SCANNING; |
mutex_unlock(&sc->mutex); |
} |