remove private support for IEEE80211_MODE_HALF and IEEE80211_MODE_QUARTER

now that net80211 has them
This commit is contained in:
Sam Leffler 2009-02-19 05:22:40 +00:00
parent 6a76ae216e
commit d497b6a449
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=188783
2 changed files with 2 additions and 9 deletions

View file

@ -5641,12 +5641,7 @@ ath_chan_change(struct ath_softc *sc, struct ieee80211_channel *chan)
* Change channels and update the h/w rate map
* if we're switching; e.g. 11a to 11b/g.
*/
if (IEEE80211_IS_CHAN_HALF(chan))
mode = IEEE80211_MODE_HALF;
else if (IEEE80211_IS_CHAN_QUARTER(chan))
mode = IEEE80211_MODE_QUARTER;
else
mode = ieee80211_chan2mode(chan);
mode = ieee80211_chan2mode(chan);
if (mode != sc->sc_curmode)
ath_setcurmode(sc, mode);
sc->sc_curchan = chan;

View file

@ -259,9 +259,7 @@ struct ath_softc {
uint32_t sc_eerd; /* regdomain from EEPROM */
uint32_t sc_eecc; /* country code from EEPROM */
/* rate tables */
#define IEEE80211_MODE_HALF (IEEE80211_MODE_MAX+0)
#define IEEE80211_MODE_QUARTER (IEEE80211_MODE_MAX+1)
const HAL_RATE_TABLE *sc_rates[IEEE80211_MODE_MAX+2];
const HAL_RATE_TABLE *sc_rates[IEEE80211_MODE_MAX];
const HAL_RATE_TABLE *sc_currates; /* current rate table */
enum ieee80211_phymode sc_curmode; /* current phy mode */
HAL_OPMODE sc_opmode; /* current operating mode */