]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
ath9k_hw: Set proper eeprom offset for AR9287 HTC devices
authorRajkumar Manoharan <rmanoharan@atheros.com>
Wed, 10 Nov 2010 12:21:26 +0000 (17:51 +0530)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 16 Nov 2010 20:59:39 +0000 (15:59 -0500)
AR9287 based PCI & USB devices are differed in eeprom start offset.
So set proper the offset for HTC devices to read nvram correctly.

Cc: stable@kernel.org
Signed-off-by: Rajkumar Manoharan <rmanoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
drivers/net/wireless/ath/ath9k/eeprom_9287.c
drivers/net/wireless/ath/ath9k/reg.h

index 966b9496a9dd4b51cf5c1f850fc987ea4b6ffff2..195406db3bd899b28f96c7b8214428822c3735db 100644 (file)
@@ -37,7 +37,7 @@ static bool ath9k_hw_ar9287_fill_eeprom(struct ath_hw *ah)
        int addr, eep_start_loc;
        eep_data = (u16 *)eep;
 
-       if (ah->hw_version.devid == 0x7015)
+       if (AR9287_HTC_DEVID(ah))
                eep_start_loc = AR9287_HTC_EEP_START_LOC;
        else
                eep_start_loc = AR9287_EEP_START_LOC;
index 52ee82d6796b24513deaaaa3f8f0e8cbdde338e2..dddf579aacf1c391dfb3e9e73675de1a781760da 100644 (file)
         ((_ah)->hw_version.devid == 0xA704) || \
         ((_ah)->hw_version.devid == 0x1200))
 
+#define AR9287_HTC_DEVID(_ah) \
+       (((_ah)->hw_version.devid == 0x7015) || \
+        ((_ah)->hw_version.devid == 0x1200))
+
 #define AR_RADIO_SREV_MAJOR                   0xf0
 #define AR_RAD5133_SREV_MAJOR                 0xc0
 #define AR_RAD2133_SREV_MAJOR                 0xd0