diff options
| author | Adrian Chadd <adrian@FreeBSD.org> | 2011-03-25 04:15:30 +0000 |
|---|---|---|
| committer | Adrian Chadd <adrian@FreeBSD.org> | 2011-03-25 04:15:30 +0000 |
| commit | ab2e5836bef6d425776a2818bdab9c954c08244f (patch) | |
| tree | 54dea9697948fd0d61dc2ec843af64f613958b1f | |
| parent | 7dd51df82fe59504c8dd841e9593337913f18003 (diff) | |
Notes
| -rw-r--r-- | sys/dev/ath/if_ath_tx_ht.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ath/if_ath_tx_ht.c b/sys/dev/ath/if_ath_tx_ht.c index 73396fa002f3..1690fb2a8861 100644 --- a/sys/dev/ath/if_ath_tx_ht.c +++ b/sys/dev/ath/if_ath_tx_ht.c @@ -129,9 +129,9 @@ ath_rateseries_setup(struct ath_softc *sc, struct ieee80211_node *ni, if (flags & (HAL_TXDESC_RTSENA | HAL_TXDESC_CTSENA)) series[i].RateFlags |= HAL_RATESERIES_RTS_CTS; +#if 0 if (ni->ni_htcap & IEEE80211_HTCAP_CHWIDTH40) series[i].RateFlags |= HAL_RATESERIES_2040; - /* * The hardware only supports short-gi in 40mhz mode - * if later hardware supports it in 20mhz mode, be sure @@ -139,6 +139,7 @@ ath_rateseries_setup(struct ath_softc *sc, struct ieee80211_node *ni, */ if (ni->ni_htcap & IEEE80211_HTCAP_SHORTGI40) series[i].RateFlags |= HAL_RATESERIES_HALFGI; +#endif series[i].Rate = rt->info[rix[i]].rateCode; |
