diff options
author | Rajkumar Manoharan <rmanoharan@atheros.com> | 2010-11-10 15:21:25 +0300 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2010-11-16 23:59:39 +0300 |
commit | 7cbf2611dac8d5f76fe64795a9426b8c97e6c3f8 (patch) | |
tree | 374def495a523dc6175ce6efa5951ecdddfd30a4 /drivers/net/wireless/ath/ath9k/hif_usb.c | |
parent | 32b089558c54792028f14ae830ca7c0a8d9ac9a3 (diff) | |
download | linux-7cbf2611dac8d5f76fe64795a9426b8c97e6c3f8.tar.xz |
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/hif_usb.c')
-rw-r--r-- | drivers/net/wireless/ath/ath9k/hif_usb.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/wireless/ath/ath9k/hif_usb.c b/drivers/net/wireless/ath/ath9k/hif_usb.c index 0e1227769e9f..dfb6560dab92 100644 --- a/drivers/net/wireless/ath/ath9k/hif_usb.c +++ b/drivers/net/wireless/ath/ath9k/hif_usb.c @@ -811,6 +811,8 @@ static int ath9k_hif_usb_download_fw(struct hif_device_usb *hif_dev) case 0x7010: case 0x7015: case 0x9018: + case 0xA704: + case 0x1200: firm_offset = AR7010_FIRMWARE_TEXT; break; default: @@ -933,6 +935,8 @@ static int ath9k_hif_usb_probe(struct usb_interface *interface, case 0x7010: case 0x7015: case 0x9018: + case 0xA704: + case 0x1200: if (le16_to_cpu(udev->descriptor.bcdDevice) == 0x0202) hif_dev->fw_name = FIRMWARE_AR7010_1_1; else |