All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices
@ 2020-11-01 17:23 Tokunori Ikegami
  2020-11-01 17:40 ` Tokunori Ikegami
  0 siblings, 1 reply; 4+ messages in thread
From: Tokunori Ikegami @ 2020-11-01 17:23 UTC (permalink / raw)
  To: linux-wireless; +Cc: Tokunori Ikegami

Buffalo WI-U3-866D is supported by the rtl8812au driver.
Also RTL8812AU software supports the product RTL8192EU also.
So add Buffalo WI-U3-866D with the RTL8192EU driver info.

Signed-off-by: Tokunori Ikegami <ikegami.t@gmail.com>
Cc: linux-wireless@vger.kernel.org
---
 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
index 5cd7ef3625c5..226c85ab3aa9 100644
--- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
+++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
@@ -6761,6 +6761,9 @@ static const struct usb_device_id dev_table[] = {
 /* Tested by Myckel Habets */
 {USB_DEVICE_AND_INTERFACE_INFO(0x2357, 0x0109, 0xff, 0xff, 0xff),
 	.driver_info = (unsigned long)&rtl8192eu_fops},
+/* Buffalo WI-U3-866D */
+{USB_DEVICE_AND_INTERFACE_INFO(0x0411, 0x025D, 0xff, 0xff, 0xff),
+	.driver_info = (unsigned long)&rtl8192eu_fops},
 {USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0xb720, 0xff, 0xff, 0xff),
 	.driver_info = (unsigned long)&rtl8723bu_fops},
 {USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0xa611, 0xff, 0xff, 0xff),
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices
  2020-11-01 17:23 [PATCH] rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices Tokunori Ikegami
@ 2020-11-01 17:40 ` Tokunori Ikegami
  0 siblings, 0 replies; 4+ messages in thread
From: Tokunori Ikegami @ 2020-11-01 17:40 UTC (permalink / raw)
  To: linux-wireless

Hi,

Sorry I have just resent the new version patch to fix the uppercase 
letter USB product ID to lowercase as below.
   Previous: 0x025D
   Fixed: 0x025d

Regards,
Ikegami

On 2020/11/02 2:23, Tokunori Ikegami wrote:
> Buffalo WI-U3-866D is supported by the rtl8812au driver.
> Also RTL8812AU software supports the product RTL8192EU also.
> So add Buffalo WI-U3-866D with the RTL8192EU driver info.
>
> Signed-off-by: Tokunori Ikegami <ikegami.t@gmail.com>
> Cc: linux-wireless@vger.kernel.org
> ---
>   drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
> index 5cd7ef3625c5..226c85ab3aa9 100644
> --- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
> +++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
> @@ -6761,6 +6761,9 @@ static const struct usb_device_id dev_table[] = {
>   /* Tested by Myckel Habets */
>   {USB_DEVICE_AND_INTERFACE_INFO(0x2357, 0x0109, 0xff, 0xff, 0xff),
>   	.driver_info = (unsigned long)&rtl8192eu_fops},
> +/* Buffalo WI-U3-866D */
> +{USB_DEVICE_AND_INTERFACE_INFO(0x0411, 0x025D, 0xff, 0xff, 0xff),
> +	.driver_info = (unsigned long)&rtl8192eu_fops},
>   {USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0xb720, 0xff, 0xff, 0xff),
>   	.driver_info = (unsigned long)&rtl8723bu_fops},
>   {USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0xa611, 0xff, 0xff, 0xff),

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices
  2020-11-01 17:32 Tokunori Ikegami
@ 2020-11-07 15:52 ` Kalle Valo
  0 siblings, 0 replies; 4+ messages in thread
From: Kalle Valo @ 2020-11-07 15:52 UTC (permalink / raw)
  To: Tokunori Ikegami; +Cc: linux-wireless, Tokunori Ikegami

Tokunori Ikegami <ikegami.t@gmail.com> wrote:

> Buffalo WI-U3-866D is supported by the rtl8812au driver.
> Also RTL8812AU software supports the product RTL8192EU also.
> So add Buffalo WI-U3-866D with the RTL8192EU driver info.
> 
> Signed-off-by: Tokunori Ikegami <ikegami.t@gmail.com>
> Cc: linux-wireless@vger.kernel.org

Patch applied to wireless-drivers-next.git, thanks.

28606150768a rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices

-- 
https://patchwork.kernel.org/project/linux-wireless/patch/20201101173236.7851-1-ikegami.t@gmail.com/

https://wireless.wiki.kernel.org/en/developers/documentation/submittingpatches


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices
@ 2020-11-01 17:32 Tokunori Ikegami
  2020-11-07 15:52 ` Kalle Valo
  0 siblings, 1 reply; 4+ messages in thread
From: Tokunori Ikegami @ 2020-11-01 17:32 UTC (permalink / raw)
  To: linux-wireless; +Cc: Tokunori Ikegami

Buffalo WI-U3-866D is supported by the rtl8812au driver.
Also RTL8812AU software supports the product RTL8192EU also.
So add Buffalo WI-U3-866D with the RTL8192EU driver info.

Signed-off-by: Tokunori Ikegami <ikegami.t@gmail.com>
Cc: linux-wireless@vger.kernel.org
---
 drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
index 5cd7ef3625c5..40291d594ade 100644
--- a/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
+++ b/drivers/net/wireless/realtek/rtl8xxxu/rtl8xxxu_core.c
@@ -6761,6 +6761,9 @@ static const struct usb_device_id dev_table[] = {
 /* Tested by Myckel Habets */
 {USB_DEVICE_AND_INTERFACE_INFO(0x2357, 0x0109, 0xff, 0xff, 0xff),
 	.driver_info = (unsigned long)&rtl8192eu_fops},
+/* Buffalo WI-U3-866D */
+{USB_DEVICE_AND_INTERFACE_INFO(0x0411, 0x025d, 0xff, 0xff, 0xff),
+	.driver_info = (unsigned long)&rtl8192eu_fops},
 {USB_DEVICE_AND_INTERFACE_INFO(USB_VENDOR_ID_REALTEK, 0xb720, 0xff, 0xff, 0xff),
 	.driver_info = (unsigned long)&rtl8723bu_fops},
 {USB_DEVICE_AND_INTERFACE_INFO(0x7392, 0xa611, 0xff, 0xff, 0xff),
-- 
2.27.0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-07 15:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-01 17:23 [PATCH] rtl8xxxu: Add Buffalo WI-U3-866D to list of supported devices Tokunori Ikegami
2020-11-01 17:40 ` Tokunori Ikegami
2020-11-01 17:32 Tokunori Ikegami
2020-11-07 15:52 ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.