ath9k: Rename ath_setcurmode() to ath_cache_conf_rate()
ath_setcurmode() is a bit misleading, all we are doing is caching the rate for the corresponding configuration we are using. Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
committed by
John W. Linville
parent
96742256ab
commit
ce111badf5
@@ -59,7 +59,8 @@ static void bus_read_cachesize(struct ath_softc *sc, int *csz)
|
|||||||
*csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
|
*csz = DEFAULT_CACHELINE >> 2; /* Use the default size */
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ath_setcurmode(struct ath_softc *sc, struct ieee80211_conf *conf)
|
static void ath_cache_conf_rate(struct ath_softc *sc,
|
||||||
|
struct ieee80211_conf *conf)
|
||||||
{
|
{
|
||||||
switch (conf->channel->band) {
|
switch (conf->channel->band) {
|
||||||
case IEEE80211_BAND_2GHZ:
|
case IEEE80211_BAND_2GHZ:
|
||||||
@@ -91,6 +92,7 @@ static void ath_setcurmode(struct ath_softc *sc, struct ieee80211_conf *conf)
|
|||||||
sc->hw_rate_table[ATH9K_MODE_11A];
|
sc->hw_rate_table[ATH9K_MODE_11A];
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
BUG_ON(1);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -316,7 +318,7 @@ static int ath_set_channel(struct ath_softc *sc, struct ath9k_channel *hchan)
|
|||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
ath_setcurmode(sc, &hw->conf);
|
ath_cache_conf_rate(sc, &hw->conf);
|
||||||
ath_update_txpow(sc);
|
ath_update_txpow(sc);
|
||||||
ath9k_hw_set_interrupts(ah, sc->sc_imask);
|
ath9k_hw_set_interrupts(ah, sc->sc_imask);
|
||||||
}
|
}
|
||||||
@@ -1647,7 +1649,7 @@ int ath_reset(struct ath_softc *sc, bool retry_tx)
|
|||||||
* that changes the channel so update any state that
|
* that changes the channel so update any state that
|
||||||
* might change as a result.
|
* might change as a result.
|
||||||
*/
|
*/
|
||||||
ath_setcurmode(sc, &hw->conf);
|
ath_cache_conf_rate(sc, &hw->conf);
|
||||||
|
|
||||||
ath_update_txpow(sc);
|
ath_update_txpow(sc);
|
||||||
|
|
||||||
@@ -1944,7 +1946,7 @@ static int ath9k_start(struct ieee80211_hw *hw)
|
|||||||
!sc->sc_config.swBeaconProcess)
|
!sc->sc_config.swBeaconProcess)
|
||||||
sc->sc_imask |= ATH9K_INT_TIM;
|
sc->sc_imask |= ATH9K_INT_TIM;
|
||||||
|
|
||||||
ath_setcurmode(sc, &hw->conf);
|
ath_cache_conf_rate(sc, &hw->conf);
|
||||||
|
|
||||||
sc->sc_flags &= ~SC_OP_INVALID;
|
sc->sc_flags &= ~SC_OP_INVALID;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user