]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ath9k: Add a macro to identify PCOEM chips
authorSujith Manoharan <c_manoha@qca.qualcomm.com>
Wed, 28 Jan 2015 12:24:23 +0000 (17:54 +0530)
committerKalle Valo <kvalo@codeaurora.org>
Thu, 29 Jan 2015 08:33:22 +0000 (10:33 +0200)
This can be used if we need to apply register settings
for all PCOEM solutions (in the AR9003 family).

Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
drivers/net/wireless/ath/ath9k/reg.h

index eb2bb0db297f7409d0b2e33452a2fa2abdd7e7a1..3c0b1807bb2b95e71ce325a11dbdb4cf7a21b177 100644 (file)
        (((_ah)->hw_version.macVersion == AR_SREV_VERSION_9485))
 #define AR_SREV_9565(_ah) \
        (((_ah)->hw_version.macVersion == AR_SREV_VERSION_9565))
+#define AR_SREV_9003_PCOEM(_ah) \
+       (AR_SREV_9462(_ah) || AR_SREV_9485(_ah) || AR_SREV_9565(_ah))
 #else
 #define AR_SREV_9462(_ah) 0
 #define AR_SREV_9485(_ah) 0
 #define AR_SREV_9565(_ah) 0
+#define AR_SREV_9003_PCOEM(_ah) 0
 #endif
 
 #define AR_SREV_9485_11_OR_LATER(_ah) \