All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] zd1211rw: remove duplicate USB device ID
@ 2021-09-17  9:21 Krzysztof Kozlowski
  2021-09-17  9:21 ` [PATCH 2/3] ar5512: " Krzysztof Kozlowski
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2021-09-17  9:21 UTC (permalink / raw)
  To: Pontus Fuchs, Kalle Valo, David S. Miller, Jakub Kicinski,
	Stanislaw Gruszka, Helmut Schaa, Daniel Drake, Ulrich Kunitz,
	linux-wireless, netdev, linux-kernel, zd1211-devs
  Cc: Krzysztof Kozlowski

The device 0x07b8,0x6001 is already on the list as zd1211 chip. Wiki
https://wireless.wiki.kernel.org/en/users/Drivers/zd1211rw/devices
confirms it is also zd1211, not the zd1211b.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 drivers/net/wireless/zydas/zd1211rw/zd_usb.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/wireless/zydas/zd1211rw/zd_usb.c b/drivers/net/wireless/zydas/zd1211rw/zd_usb.c
index a7ceef10bf6a..850c26bc9524 100644
--- a/drivers/net/wireless/zydas/zd1211rw/zd_usb.c
+++ b/drivers/net/wireless/zydas/zd1211rw/zd_usb.c
@@ -65,7 +65,6 @@ static const struct usb_device_id usb_ids[] = {
 	{ USB_DEVICE(0x0586, 0x3412), .driver_info = DEVICE_ZD1211B },
 	{ USB_DEVICE(0x0586, 0x3413), .driver_info = DEVICE_ZD1211B },
 	{ USB_DEVICE(0x079b, 0x0062), .driver_info = DEVICE_ZD1211B },
-	{ USB_DEVICE(0x07b8, 0x6001), .driver_info = DEVICE_ZD1211B },
 	{ USB_DEVICE(0x07fa, 0x1196), .driver_info = DEVICE_ZD1211B },
 	{ USB_DEVICE(0x083a, 0x4505), .driver_info = DEVICE_ZD1211B },
 	{ USB_DEVICE(0x083a, 0xe501), .driver_info = DEVICE_ZD1211B },
-- 
2.30.2


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

* [PATCH 2/3] ar5512: remove duplicate USB device ID
  2021-09-17  9:21 [PATCH 1/3] zd1211rw: remove duplicate USB device ID Krzysztof Kozlowski
@ 2021-09-17  9:21 ` Krzysztof Kozlowski
  2021-09-17  9:21 ` [PATCH 3/3] rt2x00: " Krzysztof Kozlowski
  2021-09-21 15:10 ` [PATCH 1/3] zd1211rw: " Kalle Valo
  2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2021-09-17  9:21 UTC (permalink / raw)
  To: Pontus Fuchs, Kalle Valo, David S. Miller, Jakub Kicinski,
	Stanislaw Gruszka, Helmut Schaa, Daniel Drake, Ulrich Kunitz,
	linux-wireless, netdev, linux-kernel, zd1211-devs
  Cc: Krzysztof Kozlowski

The device 0x157e,0x3006 is already on the list.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 drivers/net/wireless/ath/ar5523/ar5523.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/net/wireless/ath/ar5523/ar5523.c b/drivers/net/wireless/ath/ar5523/ar5523.c
index 49cc4b7ed516..0e9bad33fac8 100644
--- a/drivers/net/wireless/ath/ar5523/ar5523.c
+++ b/drivers/net/wireless/ath/ar5523/ar5523.c
@@ -1772,9 +1772,8 @@ static const struct usb_device_id ar5523_id_table[] = {
 	AR5523_DEVICE_UG(0x0846, 0x5f00),	/* Netgear / WPN111 */
 	AR5523_DEVICE_UG(0x083a, 0x4506),	/* SMC / EZ Connect
 						   SMCWUSBT-G2 */
-	AR5523_DEVICE_UG(0x157e, 0x3006),	/* Umedia / AR5523_1 */
+	AR5523_DEVICE_UG(0x157e, 0x3006),	/* Umedia / AR5523_1, TEW444UBEU*/
 	AR5523_DEVICE_UX(0x157e, 0x3205),	/* Umedia / AR5523_2 */
-	AR5523_DEVICE_UG(0x157e, 0x3006),	/* Umedia / TEW444UBEU */
 	AR5523_DEVICE_UG(0x1435, 0x0826),	/* Wistronneweb / AR5523_1 */
 	AR5523_DEVICE_UX(0x1435, 0x0828),	/* Wistronneweb / AR5523_2 */
 	AR5523_DEVICE_UG(0x0cde, 0x0012),	/* Zcom / AR5523 */
-- 
2.30.2


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

* [PATCH 3/3] rt2x00: remove duplicate USB device ID
  2021-09-17  9:21 [PATCH 1/3] zd1211rw: remove duplicate USB device ID Krzysztof Kozlowski
  2021-09-17  9:21 ` [PATCH 2/3] ar5512: " Krzysztof Kozlowski
@ 2021-09-17  9:21 ` Krzysztof Kozlowski
  2021-09-21 15:10 ` [PATCH 1/3] zd1211rw: " Kalle Valo
  2 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2021-09-17  9:21 UTC (permalink / raw)
  To: Pontus Fuchs, Kalle Valo, David S. Miller, Jakub Kicinski,
	Stanislaw Gruszka, Helmut Schaa, Daniel Drake, Ulrich Kunitz,
	linux-wireless, netdev, linux-kernel, zd1211-devs
  Cc: Krzysztof Kozlowski

The device 0x043e,0x7a32 is already on the list under
CONFIG_RT2800USB_RT55XX.  Since it is the sole Arcadyan entry in RT55xx,
assume the proper chip is RT55xx, not RT53xx, although this was not
confirmed by testing or 3rd party sources.

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
---
 drivers/net/wireless/ralink/rt2x00/rt2800usb.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/wireless/ralink/rt2x00/rt2800usb.c b/drivers/net/wireless/ralink/rt2x00/rt2800usb.c
index b5c67f656cfd..a3ffd1b0c9bc 100644
--- a/drivers/net/wireless/ralink/rt2x00/rt2800usb.c
+++ b/drivers/net/wireless/ralink/rt2x00/rt2800usb.c
@@ -1101,7 +1101,6 @@ static const struct usb_device_id rt2800usb_device_table[] = {
 #ifdef CONFIG_RT2800USB_RT53XX
 	/* Arcadyan */
 	{ USB_DEVICE(0x043e, 0x7a12) },
-	{ USB_DEVICE(0x043e, 0x7a32) },
 	/* ASUS */
 	{ USB_DEVICE(0x0b05, 0x17e8) },
 	/* Azurewave */
-- 
2.30.2


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

* Re: [PATCH 1/3] zd1211rw: remove duplicate USB device ID
  2021-09-17  9:21 [PATCH 1/3] zd1211rw: remove duplicate USB device ID Krzysztof Kozlowski
  2021-09-17  9:21 ` [PATCH 2/3] ar5512: " Krzysztof Kozlowski
  2021-09-17  9:21 ` [PATCH 3/3] rt2x00: " Krzysztof Kozlowski
@ 2021-09-21 15:10 ` Kalle Valo
  2 siblings, 0 replies; 4+ messages in thread
From: Kalle Valo @ 2021-09-21 15:10 UTC (permalink / raw)
  To: Krzysztof Kozlowski
  Cc: Pontus Fuchs, David S. Miller, Jakub Kicinski, Stanislaw Gruszka,
	Helmut Schaa, Daniel Drake, Ulrich Kunitz, linux-wireless,
	netdev, linux-kernel, zd1211-devs, Krzysztof Kozlowski

Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> wrote:

> The device 0x07b8,0x6001 is already on the list as zd1211 chip. Wiki
> https://wireless.wiki.kernel.org/en/users/Drivers/zd1211rw/devices
> confirms it is also zd1211, not the zd1211b.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

3 patches applied to wireless-drivers-next.git, thanks.

e142bd910f53 zd1211rw: remove duplicate USB device ID
b7cca318d7ca ar5512: remove duplicate USB device ID
60fe1f8dcd3c rt2x00: remove duplicate USB device ID

-- 
https://patchwork.kernel.org/project/linux-wireless/patch/20210917092108.19497-1-krzysztof.kozlowski@canonical.com/

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


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

end of thread, other threads:[~2021-09-21 15:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-17  9:21 [PATCH 1/3] zd1211rw: remove duplicate USB device ID Krzysztof Kozlowski
2021-09-17  9:21 ` [PATCH 2/3] ar5512: " Krzysztof Kozlowski
2021-09-17  9:21 ` [PATCH 3/3] rt2x00: " Krzysztof Kozlowski
2021-09-21 15:10 ` [PATCH 1/3] zd1211rw: " 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.