diff options
author | Rajkumar Manoharan <rmanoharan@atheros.com> | 2010-11-10 17:51:25 +0530 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-11-16 15:59:39 -0500 |
commit | 7cbf2611dac8d5f76fe64795a9426b8c97e6c3f8 (patch) | |
tree | 374def495a523dc6175ce6efa5951ecdddfd30a4 /drivers/net/wireless/ath/ath9k/reg.h | |
parent | 32b089558c54792028f14ae830ca7c0a8d9ac9a3 (diff) |
ath9k_htc: Add new devices into AR7010
Treat new PIDs (0xA704, 0x1200) as AR7010 devices.
Cc: stable@kernel.org
Signed-off-by: Rajkumar Manoharan <rmanoharan@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath9k/reg.h')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/reg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath9k/reg.h b/drivers/net/wireless/ath/ath9k/reg.h index fa05b711e5cd..52ee82d6796b 100644 --- a/drivers/net/wireless/ath/ath9k/reg.h +++ b/drivers/net/wireless/ath/ath9k/reg.h @@ -866,7 +866,9 @@ #define AR_DEVID_7010(_ah) \ (((_ah)->hw_version.devid == 0x7010) || \ ((_ah)->hw_version.devid == 0x7015) || \ - ((_ah)->hw_version.devid == 0x9018)) + ((_ah)->hw_version.devid == 0x9018) || \ + ((_ah)->hw_version.devid == 0xA704) || \ + ((_ah)->hw_version.devid == 0x1200)) #define AR_RADIO_SREV_MAJOR 0xf0 #define AR_RAD5133_SREV_MAJOR 0xc0 |