public inbox for linux-usb@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: add QUIRK_NO_BOS for several devices
@ 2026-02-04  3:29 A1RM4X
  2026-02-04  5:15 ` Greg KH
  0 siblings, 1 reply; 9+ messages in thread
From: A1RM4X @ 2026-02-04  3:29 UTC (permalink / raw)
  To: linux-usb
  Cc: gregkh, limiao, oneukum, huanglei, lijiayi, dev,
	johannes.bruederl, linux-kernel

Add QUIRK_NO_BOS entries for:
 * ASUS TUF 4K PRO (0x0b05:0x1ab9)
 * Avermedia Live Gamer Ultra 2.1 (0x07ca:0x2553)
 * UGREEN 35871 (0x2b89:0x5871)

Signed-off-by: A1RM4X <dev@a1rm4x.com>
---
 drivers/usb/core/quirks.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/usb/core/quirks.c b/drivers/usb/core/quirks.c
index c4d85089d19b..ddce45ce9f6c 100644
--- a/drivers/usb/core/quirks.c
+++ b/drivers/usb/core/quirks.c
@@ -453,6 +453,15 @@ static const struct usb_device_id usb_quirk_list[] = {
 	/* Elgato 4K X - BOS descriptor fetch hangs at SuperSpeed Plus */
 	{ USB_DEVICE(0x0fd9, 0x009b), .driver_info = USB_QUIRK_NO_BOS },
 
+	/* ASUS TUF 4K PRO - BOS descriptor fetch hangs at SuperSpeed Plus */
+	{ USB_DEVICE(0x0b05, 0x1ab9), .driver_info = USB_QUIRK_NO_BOS },
+
+	/* Avermedia Live Gamer Ultra 2.1 (GC553G2) - BOS descriptor fetch hangs at SuperSpeed Plus */
+	{ USB_DEVICE(0x07ca, 0x2553), .driver_info = USB_QUIRK_NO_BOS },
+
+	/* UGREEN 35871 - BOS descriptor fetch hangs at SuperSpeed Plus */
+	{ USB_DEVICE(0x2b89, 0x5871), .driver_info = USB_QUIRK_NO_BOS },
+
 	/* Sony Xperia XZ1 Compact (lilac) smartphone in fastboot mode */
 	{ USB_DEVICE(0x0fce, 0x0dde), .driver_info = USB_QUIRK_NO_LPM },
 
-- 
2.53.0


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

end of thread, other threads:[~2026-02-05 17:33 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-04  3:29 [PATCH] usb: add QUIRK_NO_BOS for several devices A1RM4X
2026-02-04  5:15 ` Greg KH
2026-02-04 14:25   ` A1RM4X
2026-02-04 14:36     ` Greg KH
2026-02-04 14:37     ` Greg KH
2026-02-04 19:51       ` A1RM4X
2026-02-05  6:51         ` Greg KH
2026-02-05 17:24           ` sharms
2026-02-05 17:33             ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox