linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jes.Sorensen@redhat.com
To: linux-wireless@vger.kernel.org
Cc: kvalo@codeaurora.org, Larry.Finger@lwfinger.net,
	Jes Sorensen <Jes.Sorensen@redhat.com>
Subject: [PATCH 01/20] rtl8xxxu: Mark 0x20f4:0x648b as tested
Date: Fri, 19 Aug 2016 17:46:23 -0400	[thread overview]
Message-ID: <1471643202-26250-2-git-send-email-Jes.Sorensen@redhat.com> (raw)
In-Reply-To: <1471643202-26250-1-git-send-email-Jes.Sorensen@redhat.com>

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>
---
 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

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),
-- 
2.7.4

  reply	other threads:[~2016-08-19 21:47 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-19 21:46 [PATCH 00/20] rtl8xxxu patches for wireless-drivers-next Jes.Sorensen
2016-08-19 21:46 ` Jes.Sorensen [this message]
2016-09-03 16:59   ` [01/20] rtl8xxxu: Mark 0x20f4:0x648b as tested Kalle Valo
2016-08-19 21:46 ` [PATCH 02/20] rtl8xxxu: Mark 0x2001:0x3308 " Jes.Sorensen
2016-08-19 21:46 ` [PATCH 03/20] rtl8xxxu: Fix error handling if rtl8xxxu_init_device() fails Jes.Sorensen
2016-08-19 21:46 ` [PATCH 04/20] rtl8xxxu: Add TP-Link TL-WN823N v2 to list of supported devices Jes.Sorensen
2016-08-19 21:46 ` [PATCH 05/20] rtl8xxxu: Add TX page defines for 8723b Jes.Sorensen
2016-08-19 21:46 ` [PATCH 06/20] rtl8xxxu: Switch 8723a to use new rtl8xxxu_init_queue_reserved_page() routine Jes.Sorensen
2016-08-19 21:46 ` [PATCH 07/20] rtl8xxxu: Switch 8192cu/8188cu devices to use rtl8xxxu_init_queue_reserved_page() Jes.Sorensen
2016-08-19 21:46 ` [PATCH 08/20] rtl8xxxu: Remove now obsolete rtl8xxxu_old_init_queue_reserved_page() Jes.Sorensen
2016-08-19 21:46 ` [PATCH 09/20] rtl8xxxu: Simplify code setting TX buffer boundary Jes.Sorensen
2016-08-19 21:46 ` [PATCH 10/20] rtl8xxxu: Add bit definitions for REG_FPGA0_TX_INFO Jes.Sorensen
2016-08-19 21:46 ` [PATCH 11/20] rtl8xxxu: Add interrupt bit definitions for gen2 parts Jes.Sorensen
2016-08-19 21:46 ` [PATCH 12/20] rtl8xxxu: Use flag to indicate whether device has TX report timer support Jes.Sorensen
2016-08-19 21:46 ` [PATCH 13/20] rtl8xxxu: Convert flags in rtl8xxxu_fileops to bitflags Jes.Sorensen
2016-08-19 21:46 ` [PATCH 14/20] rtl8xxxu: Introduce fops bitflag indicating type of thermal meter Jes.Sorensen
2016-08-19 21:46 ` [PATCH 15/20] rtl8xxxu: Simplify calculating of hw value used for setting TX rate Jes.Sorensen
2016-08-19 21:46 ` [PATCH 16/20] rtl8xxxu: Determine the need for SGI before handling specific TX desc formats Jes.Sorensen
2016-08-19 21:46 ` [PATCH 17/20] rtl8xxxu: Determine need for shore preamble before updating TX descriptors Jes.Sorensen
2016-08-19 21:46 ` [PATCH 18/20] rtl8xxxu: Split filling of TX descriptors into separate functions Jes.Sorensen
2016-08-19 21:46 ` [PATCH 19/20] rtl8xxxu: gen1: Fix non static symbol warning Jes.Sorensen
2016-08-19 21:46 ` [PATCH 20/20] net: wireless: rtl8xxxu: Make rtl8xxxu_ampdu_action less chatty Jes.Sorensen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1471643202-26250-2-git-send-email-Jes.Sorensen@redhat.com \
    --to=jes.sorensen@redhat.com \
    --cc=Larry.Finger@lwfinger.net \
    --cc=kvalo@codeaurora.org \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).