aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruno Randolf <br1@einfach.org>2010-05-18 21:31:21 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-06-02 16:13:25 -0400
commit30bd3a3092c17dbfa18f042ca0815758e8d34e65 (patch)
treecacb13fb1c894ab67479f3138b5a5124629ea91d
parent230fc4f3b2fa72980787a5f86c850f02bb193187 (diff)
ath5k: clarify logic when to enable spur mitigation filter
The old code logically did not make sense and seems to have been confused by the fact that we could have newer EEPROMs on older hardware. In any case the spur mitigation filter was set if the srev was >= AR5K_SREV_AR5424. Spur info is available only from EEPROM versions bigger than 5.3 but but the EEPOM routines will use static values for older versions, so that should be o.k. Signed-off-by: Bruno Randolf <br1@einfach.org> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/ath/ath5k/reset.c15
1 files changed, 5 insertions, 10 deletions
diff --git a/drivers/net/wireless/ath/ath5k/reset.c b/drivers/net/wireless/ath/ath5k/reset.c
index 4f4504c2939c..a1bc01528ab5 100644
--- a/drivers/net/wireless/ath/ath5k/reset.c
+++ b/drivers/net/wireless/ath/ath5k/reset.c
@@ -1087,22 +1087,17 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode,
1087 /* Write OFDM timings on 5212*/ 1087 /* Write OFDM timings on 5212*/
1088 if (ah->ah_version == AR5K_AR5212 && 1088 if (ah->ah_version == AR5K_AR5212 &&
1089 channel->hw_value & CHANNEL_OFDM) { 1089 channel->hw_value & CHANNEL_OFDM) {
1090 struct ath5k_eeprom_info *ee =
1091 &ah->ah_capabilities.cap_eeprom;
1092 1090
1093 ret = ath5k_hw_write_ofdm_timings(ah, channel); 1091 ret = ath5k_hw_write_ofdm_timings(ah, channel);
1094 if (ret) 1092 if (ret)
1095 return ret; 1093 return ret;
1096 1094
1097 /* Note: According to docs we can have a newer 1095 /* Spur info is available only from EEPROM versions
1098 * EEPROM on old hardware, so we need to verify 1096 * bigger than 5.3 but but the EEPOM routines will use
1099 * that our hardware is new enough to have spur 1097 * static values for older versions */
1100 * mitigation registers (delta phase etc) */ 1098 if (ah->ah_mac_srev >= AR5K_SREV_AR5424)
1101 if (ah->ah_mac_srev >= AR5K_SREV_AR5424 ||
1102 (ah->ah_mac_srev >= AR5K_SREV_AR5424 &&
1103 ee->ee_version >= AR5K_EEPROM_VERSION_5_3))
1104 ath5k_hw_set_spur_mitigation_filter(ah, 1099 ath5k_hw_set_spur_mitigation_filter(ah,
1105 channel); 1100 channel);
1106 } 1101 }
1107 1102
1108 /*Enable/disable 802.11b mode on 5111 1103 /*Enable/disable 802.11b mode on 5111