Message ID | 1471643202-26250-2-git-send-email-Jes.Sorensen@redhat.com (mailing list archive) |
---|---|
State | Accepted |
Commit | b81669b9e0b4864f59421e7681512731fae01ab9 |
Delegated to: | Kalle Valo |
Headers | show |
Jes Sorensen <Jes.Sorensen@redhat.com> wrote: > From: Jes Sorensen <Jes.Sorensen@redhat.com> > > Successfully tested by Jocelyn Mayer > > Reported-by: J. Mayer <l_indien@magic.fr> > Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com> Thanks, 20 patches applied to wireless-drivers-next.git: b81669b9e0b4 rtl8xxxu: Mark 0x20f4:0x648b as tested 76a8e07d49b6 rtl8xxxu: Mark 0x2001:0x3308 as tested deb6176e5613 rtl8xxxu: Fix error handling if rtl8xxxu_init_device() fails 690a6d268bdf rtl8xxxu: Add TP-Link TL-WN823N v2 to list of supported devices 44abaa08d002 rtl8xxxu: Add TX page defines for 8723b e366f45d3627 rtl8xxxu: Switch 8723a to use new rtl8xxxu_init_queue_reserved_page() routine b492940dc1f7 rtl8xxxu: Switch 8192cu/8188cu devices to use rtl8xxxu_init_queue_reserved_page() efeb8ce7a98c rtl8xxxu: Remove now obsolete rtl8xxxu_old_init_queue_reserved_page() e02aa3eef786 rtl8xxxu: Simplify code setting TX buffer boundary dce7548fd970 rtl8xxxu: Add bit definitions for REG_FPGA0_TX_INFO 0b09628948bc rtl8xxxu: Add interrupt bit definitions for gen2 parts e3ebcd7428c1 rtl8xxxu: Use flag to indicate whether device has TX report timer support ee675cc30e07 rtl8xxxu: Convert flags in rtl8xxxu_fileops to bitflags eed145ab25a3 rtl8xxxu: Introduce fops bitflag indicating type of thermal meter be49b1f111c7 rtl8xxxu: Simplify calculating of hw value used for setting TX rate 3972cc579140 rtl8xxxu: Determine the need for SGI before handling specific TX desc formats 99afaac4278c rtl8xxxu: Determine need for shore preamble before updating TX descriptors b59415c2dd08 rtl8xxxu: Split filling of TX descriptors into separate functions 77e3980201e7 rtl8xxxu: gen1: Fix non static symbol warning 7329dc13107b rtl8xxxu: Make rtl8xxxu_ampdu_action less chatty
diff --git a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c index 77048db..47d0868 100644 --- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c +++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c @@ -5971,6 +5971,10 @@ static int rtl8xxxu_probe(struct usb_interface *interface, if (id->idProduct == 0x1004) untested = 0; break; + case 0x20f4: + if (id->idProduct == 0x648b) + untested = 0; + break; default: break; } @@ -6140,6 +6144,9 @@ static struct usb_device_id dev_table[] = { /* Tested by Andrea Merello */ {USB_DEVICE_AND_INTERFACE_INFO(0x050d, 0x1004, 0xff, 0xff, 0xff), .driver_info = (unsigned long)&rtl8192cu_fops}, +/* Tested by Jocelyn Mayer */ +{USB_DEVICE_AND_INTERFACE_INFO(0x20f4, 0x648b, 0xff, 0xff, 0xff), + .driver_info = (unsigned long)&rtl8192cu_fops}, /* Currently untested 8188 series devices */ {USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0x8191, 0xff, 0xff, 0xff), .driver_info = (unsigned long)&rtl8192cu_fops}, @@ -6199,8 +6206,6 @@ static struct usb_device_id dev_table[] = { .driver_info = (unsigned long)&rtl8192cu_fops}, {USB_DEVICE_AND_INTERFACE_INFO(0x2019, 0xed17, 0xff, 0xff, 0xff), .driver_info = (unsigned long)&rtl8192cu_fops}, -{USB_DEVICE_AND_INTERFACE_INFO(0x20f4, 0x648b, 0xff, 0xff, 0xff), - .driver_info = (unsigned long)&rtl8192cu_fops}, {USB_DEVICE_AND_INTERFACE_INFO(0x4855, 0x0090, 0xff, 0xff, 0xff), .driver_info = (unsigned long)&rtl8192cu_fops}, {USB_DEVICE_AND_INTERFACE_INFO(0x4856, 0x0091, 0xff, 0xff, 0xff),