diff options
author | Sujith <Sujith.Manoharan@atheros.com> | 2008-12-07 11:12:10 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2008-12-12 13:48:24 -0500 |
commit | 3706de6f58962ba74c18eb4cb1ebe034ff723037 (patch) | |
tree | f7abfd387c67b07ae27c57609a7aa819140ae103 /drivers/net/wireless/ath9k/recv.c | |
parent | 40990ec01fcca0b86a19c13a5d3deb77da1913a7 (diff) |
ath9k: Maintain rate table choice after association
A scan run after association would change sc_curmode which is
used to get the current rate table. This patch fixes it
by removing sc_curmode and setting the rate table in usage in cur_rate_table
on association.
Signed-off-by: Sujith <Sujith.Manoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath9k/recv.c')
-rw-r--r-- | drivers/net/wireless/ath9k/recv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath9k/recv.c b/drivers/net/wireless/ath9k/recv.c index 7a455468823b..b182ef570f88 100644 --- a/drivers/net/wireless/ath9k/recv.c +++ b/drivers/net/wireless/ath9k/recv.c | |||
@@ -148,7 +148,7 @@ static int ath_rx_prepare(struct sk_buff *skb, struct ath_desc *ds, | |||
148 | struct ieee80211_rx_status *rx_status, bool *decrypt_error, | 148 | struct ieee80211_rx_status *rx_status, bool *decrypt_error, |
149 | struct ath_softc *sc) | 149 | struct ath_softc *sc) |
150 | { | 150 | { |
151 | struct ath_rate_table *rate_table = sc->hw_rate_table[sc->sc_curmode]; | 151 | struct ath_rate_table *rate_table = sc->cur_rate_table; |
152 | struct ieee80211_hdr *hdr; | 152 | struct ieee80211_hdr *hdr; |
153 | int ratekbps, rix; | 153 | int ratekbps, rix; |
154 | u8 ratecode; | 154 | u8 ratecode; |