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-14 14:36:04 -0400 |
commit | 392a0baf31b39b50cc6bf6d4400d542641d466c4 (patch) | |
tree | 7115d335269b3ace873f51bc777d092b3e8552bf /drivers | |
parent | e175e99646f21602d844ce85a727c83ba644ab87 (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>
Diffstat (limited to 'drivers')
-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) || |