ath5k: clarify logic when to enable spur mitigation filter
authorBruno Randolf <br1@einfach.org>
Wed, 19 May 2010 01:31:21 +0000 (10:31 +0900)
committerJohn W. Linville <linville@tuxdriver.com>
Wed, 2 Jun 2010 20:13:25 +0000 (16:13 -0400)
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>
drivers/net/wireless/ath/ath5k/reset.c

index 4f4504c2939c5ab7774618496220f5b406739413..a1bc01528ab5fcf0fff64c1718f358de6511496f 100644 (file)
@@ -1087,22 +1087,17 @@ int ath5k_hw_reset(struct ath5k_hw *ah, enum nl80211_iftype op_mode,
                /* Write OFDM timings on 5212*/
                if (ah->ah_version == AR5K_AR5212 &&
                        channel->hw_value & CHANNEL_OFDM) {
-                       struct ath5k_eeprom_info *ee =
-                                       &ah->ah_capabilities.cap_eeprom;
 
                        ret = ath5k_hw_write_ofdm_timings(ah, channel);
                        if (ret)
                                return ret;
 
-                       /* Note: According to docs we can have a newer
-                        * EEPROM on old hardware, so we need to verify
-                        * that our hardware is new enough to have spur
-                        * mitigation registers (delta phase etc) */
-                       if (ah->ah_mac_srev >= AR5K_SREV_AR5424 ||
-                       (ah->ah_mac_srev >= AR5K_SREV_AR5424 &&
-                       ee->ee_version >= AR5K_EEPROM_VERSION_5_3))
+                       /* Spur info is available only from EEPROM versions
+                        * bigger than 5.3 but but the EEPOM routines will use
+                        * static values for older versions */
+                       if (ah->ah_mac_srev >= AR5K_SREV_AR5424)
                                ath5k_hw_set_spur_mitigation_filter(ah,
-                                                               channel);
+                                                                   channel);
                }
 
                /*Enable/disable 802.11b mode on 5111
This page took 0.02605 seconds and 5 git commands to generate.