summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/dev/ath/if_ath.c7
-rw-r--r--sys/dev/ath/if_athvar.h4
2 files changed, 2 insertions, 9 deletions
diff --git a/sys/dev/ath/if_ath.c b/sys/dev/ath/if_ath.c
index 1577e88..1a30d5e 100644
--- a/sys/dev/ath/if_ath.c
+++ b/sys/dev/ath/if_ath.c
@@ -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;
diff --git a/sys/dev/ath/if_athvar.h b/sys/dev/ath/if_athvar.h
index 4b3325c..6d5a35d 100644
--- a/sys/dev/ath/if_athvar.h
+++ b/sys/dev/ath/if_athvar.h
@@ -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 */
OpenPOWER on IntegriCloud