diff options
author | Daniel C Halperin <daniel.c.halperin@intel.com> | 2009-09-11 13:38:08 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-09-23 11:35:40 -0400 |
commit | c929c5a1281b666fabc9aa94c607932ec6d28c6d (patch) | |
tree | c82c4f1fff737022de09ff362a230c81acd3ced5 | |
parent | 91d372c0afc55faf44c1b763693f089b5dad31ec (diff) |
iwlwifi: fix HT operation in 2.4 GHz band
When we cleaned up the driver to properly tell mac80211 about HT rates
("iwlwifi: use iwl_hwrate_get_mac80211_idx where appropriate"), we broke
internal rate indexing in 2.4 GHz band.
Signed-off-by: Daniel C Halperin <daniel.c.halperin@intel.com>
Tested-by: Wey-Yi Guy <wey-yi.w.guy@intel.com>
Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-agn-rs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn-rs.c b/drivers/net/wireless/iwlwifi/iwl-agn-rs.c index 40b207aa8fef..fd731534df1c 100644 --- a/drivers/net/wireless/iwlwifi/iwl-agn-rs.c +++ b/drivers/net/wireless/iwlwifi/iwl-agn-rs.c | |||
@@ -883,6 +883,12 @@ static void rs_tx_status(void *priv_r, struct ieee80211_supported_band *sband, | |||
883 | mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */ | 883 | mac_index &= RATE_MCS_CODE_MSK; /* Remove # of streams */ |
884 | if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE)) | 884 | if (mac_index >= (IWL_RATE_9M_INDEX - IWL_FIRST_OFDM_RATE)) |
885 | mac_index++; | 885 | mac_index++; |
886 | /* | ||
887 | * mac80211 HT index is always zero-indexed; we need to move | ||
888 | * HT OFDM rates after CCK rates in 2.4 GHz band | ||
889 | */ | ||
890 | if (priv->band == IEEE80211_BAND_2GHZ) | ||
891 | mac_index += IWL_FIRST_OFDM_RATE; | ||
886 | } | 892 | } |
887 | 893 | ||
888 | if ((mac_index < 0) || | 894 | if ((mac_index < 0) || |