diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-11-26 17:20:34 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-11-26 17:20:34 +0000 |
commit | b1a9c0a79daf45c38ec6c51fce673f44db47edf1 (patch) | |
tree | 6a296437e8d50e623dd9ac827655b10b3023a4e0 /sys/dev/ic/acx111.c | |
parent | b6b1aebc467a9507844d9ec43842a4b2f94a4b6f (diff) |
Make use of ieee80211_std_rateset
Diffstat (limited to 'sys/dev/ic/acx111.c')
-rw-r--r-- | sys/dev/ic/acx111.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/acx111.c b/sys/dev/ic/acx111.c index 2515cf58ce3..3b8eba8c696 100644 --- a/sys/dev/ic/acx111.c +++ b/sys/dev/ic/acx111.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx111.c,v 1.12 2006/09/27 04:34:36 brad Exp $ */ +/* $OpenBSD: acx111.c,v 1.13 2006/11/26 17:20:33 jsg Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -299,8 +299,8 @@ acx111_set_param(struct acx_softc *sc) IEEE80211_CHAN_2GHZ; sc->sc_ic.ic_caps = IEEE80211_C_WEP; sc->sc_ic.ic_phytype = IEEE80211_T_OFDM; - sc->sc_ic.ic_sup_rates[IEEE80211_MODE_11B] = acx_rates_11b; - sc->sc_ic.ic_sup_rates[IEEE80211_MODE_11G] = acx_rates_11g; + sc->sc_ic.ic_sup_rates[IEEE80211_MODE_11B] = ieee80211_std_rateset_11b; + sc->sc_ic.ic_sup_rates[IEEE80211_MODE_11G] = ieee80211_std_rateset_11g; sc->chip_init = acx111_init; sc->chip_write_config = acx111_write_config; |