diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2008-06-01 10:17:46 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2008-06-01 10:17:46 +0000 |
commit | b02ca13e44b40ea62d8bfa1f873ad1b784031047 (patch) | |
tree | 5db4bc1c07d962265a335c4231cbb4447786db89 /sys/dev | |
parent | e874542359ee262a968f3730eb3c5b7898d98045 (diff) |
ACX111 parts can't send using short slot time, but it seems to have no problem
to receive packets sent using short slot time. Turn on short slot time
support, so that we don't prevent other STA from using short slot time.
From sephe@DragonFly
ok mglocker@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/acx111.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/acx111.c b/sys/dev/ic/acx111.c index 9fc20175702..1288f1f66e5 100644 --- a/sys/dev/ic/acx111.c +++ b/sys/dev/ic/acx111.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx111.c,v 1.16 2007/08/05 21:37:29 claudio Exp $ */ +/* $OpenBSD: acx111.c,v 1.17 2008/06/01 10:17:45 brad Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -285,7 +285,7 @@ acx111_set_param(struct acx_softc *sc) IEEE80211_CHAN_OFDM | IEEE80211_CHAN_DYN | IEEE80211_CHAN_2GHZ; - sc->sc_ic.ic_caps = IEEE80211_C_WEP; + sc->sc_ic.ic_caps = IEEE80211_C_WEP | IEEE80211_C_SHSLOT; sc->sc_ic.ic_phytype = IEEE80211_T_OFDM; 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; |