Skip to content

Commit 999a7c5

Browse files
dcbwdavem330
authored andcommitted
i2400m: add Intel 6150 device IDs
Add device IDs for WiMAX function of Intel 6150 cards. Signed-off-by: Dan Williams <dcbw@redhat.com> Cc: stable@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net>
1 parent 50077cd commit 999a7c5

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

drivers/net/wimax/i2400m/i2400m-usb.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,9 @@ enum {
152152
/* Device IDs */
153153
USB_DEVICE_ID_I6050 = 0x0186,
154154
USB_DEVICE_ID_I6050_2 = 0x0188,
155+
USB_DEVICE_ID_I6150 = 0x07d6,
156+
USB_DEVICE_ID_I6150_2 = 0x07d7,
157+
USB_DEVICE_ID_I6150_3 = 0x07d9,
155158
USB_DEVICE_ID_I6250 = 0x0187,
156159
};
157160

drivers/net/wimax/i2400m/usb.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,9 @@ int i2400mu_probe(struct usb_interface *iface,
510510
switch (id->idProduct) {
511511
case USB_DEVICE_ID_I6050:
512512
case USB_DEVICE_ID_I6050_2:
513+
case USB_DEVICE_ID_I6150:
514+
case USB_DEVICE_ID_I6150_2:
515+
case USB_DEVICE_ID_I6150_3:
513516
case USB_DEVICE_ID_I6250:
514517
i2400mu->i6050 = 1;
515518
break;
@@ -759,6 +762,9 @@ static
759762
struct usb_device_id i2400mu_id_table[] = {
760763
{ USB_DEVICE(0x8086, USB_DEVICE_ID_I6050) },
761764
{ USB_DEVICE(0x8086, USB_DEVICE_ID_I6050_2) },
765+
{ USB_DEVICE(0x8087, USB_DEVICE_ID_I6150) },
766+
{ USB_DEVICE(0x8087, USB_DEVICE_ID_I6150_2) },
767+
{ USB_DEVICE(0x8087, USB_DEVICE_ID_I6150_3) },
762768
{ USB_DEVICE(0x8086, USB_DEVICE_ID_I6250) },
763769
{ USB_DEVICE(0x8086, 0x0181) },
764770
{ USB_DEVICE(0x8086, 0x1403) },

0 commit comments

Comments
 (0)