View | Details | Raw Unified | Return to bug 197143 | Differences between
and this patch

Collapse All | Expand All

(-)sys/dev/wpi/if_wpi.c (-2 lines)
Lines 4274-4281 Link Here
4274
	sc->rxon.flags = htole32(WPI_RXON_TSF | WPI_RXON_CTS_TO_SELF);
4274
	sc->rxon.flags = htole32(WPI_RXON_TSF | WPI_RXON_CTS_TO_SELF);
4275
	if (IEEE80211_IS_CHAN_2GHZ(ni->ni_chan))
4275
	if (IEEE80211_IS_CHAN_2GHZ(ni->ni_chan))
4276
		sc->rxon.flags |= htole32(WPI_RXON_AUTO | WPI_RXON_24GHZ);
4276
		sc->rxon.flags |= htole32(WPI_RXON_AUTO | WPI_RXON_24GHZ);
4277
	/* Short preamble and slot time are negotiated when associating. */
4278
	sc->rxon.flags &= ~htole32(WPI_RXON_SHPREAMBLE | WPI_RXON_SHSLOT);
4279
	if (ic->ic_flags & IEEE80211_F_SHSLOT)
4277
	if (ic->ic_flags & IEEE80211_F_SHSLOT)
4280
		sc->rxon.flags |= htole32(WPI_RXON_SHSLOT);
4278
		sc->rxon.flags |= htole32(WPI_RXON_SHSLOT);
4281
	if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)
4279
	if (ic->ic_flags & IEEE80211_F_SHPREAMBLE)

Return to bug 197143