Commit 4e63f768 authored by Sujith's avatar Sujith Committed by John W. Linville

ath9k_htc: Update supported product list

This patch adds USB IDs for some more supported
devices.
Signed-off-by: default avatarSujith <Sujith.Manoharan@atheros.com>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 1baf8a90
...@@ -17,9 +17,17 @@ ...@@ -17,9 +17,17 @@
#include "htc.h" #include "htc.h"
static struct usb_device_id ath9k_hif_usb_ids[] = { static struct usb_device_id ath9k_hif_usb_ids[] = {
{ USB_DEVICE(0x0cf3, 0x9271) }, { USB_DEVICE(0x0cf3, 0x9271) }, /* Atheros */
{ USB_DEVICE(0x0cf3, 0x1006) }, { USB_DEVICE(0x0cf3, 0x1006) }, /* Atheros */
{ USB_DEVICE(0x0cf3, 0x7010) }, { USB_DEVICE(0x0cf3, 0x7010) }, /* Atheros */
{ USB_DEVICE(0x0cf3, 0x7015) }, /* Atheros */
{ USB_DEVICE(0x0846, 0x9030) }, /* Netgear N150 */
{ USB_DEVICE(0x0846, 0x9018) }, /* Netgear WNDA3200 */
{ USB_DEVICE(0x07D1, 0x3A10) }, /* Dlink Wireless 150 */
{ USB_DEVICE(0x13D3, 0x3327) }, /* Azurewave */
{ USB_DEVICE(0x13D3, 0x3328) }, /* Azurewave */
{ USB_DEVICE(0x04CA, 0x4605) }, /* Liteon */
{ USB_DEVICE(0x083A, 0xA704) }, /* SMC Networks */
{ }, { },
}; };
...@@ -879,17 +887,15 @@ static int ath9k_hif_usb_probe(struct usb_interface *interface, ...@@ -879,17 +887,15 @@ static int ath9k_hif_usb_probe(struct usb_interface *interface,
/* Find out which firmware to load */ /* Find out which firmware to load */
switch(hif_dev->device_id) { switch(hif_dev->device_id) {
case 0x9271:
case 0x1006:
hif_dev->fw_name = "ar9271.fw";
break;
case 0x7010: case 0x7010:
case 0x9018:
if (le16_to_cpu(udev->descriptor.bcdDevice) == 0x0202) if (le16_to_cpu(udev->descriptor.bcdDevice) == 0x0202)
hif_dev->fw_name = "ar7010_1_1.fw"; hif_dev->fw_name = "ar7010_1_1.fw";
else else
hif_dev->fw_name = "ar7010.fw"; hif_dev->fw_name = "ar7010.fw";
break; break;
default: default:
hif_dev->fw_name = "ar9271.fw";
break; break;
} }
......
...@@ -244,17 +244,12 @@ static int ath9k_init_htc_services(struct ath9k_htc_priv *priv, u16 devid) ...@@ -244,17 +244,12 @@ static int ath9k_init_htc_services(struct ath9k_htc_priv *priv, u16 devid)
*/ */
switch(devid) { switch(devid) {
case 0x9271:
case 0x1006:
priv->htc->credits = 33;
break;
case 0x7010: case 0x7010:
case 0x9018:
priv->htc->credits = 45; priv->htc->credits = 45;
break; break;
default: default:
dev_err(priv->dev, "ath9k_htc: Unsupported device id: 0x%x\n", priv->htc->credits = 33;
devid);
goto err;
} }
ret = htc_init(priv->htc); ret = htc_init(priv->htc);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment