Skip to content

Commit 91f7a15

Browse files
kichianggregkh
authored andcommitted
xhci: Apply broken streams quirk to Etron EJ188 xHCI host
As described in commit 8f873c1 ("xhci: Blacklist using streams on the Etron EJ168 controller"), EJ188 have the same issue as EJ168, where Streams do not work reliable on EJ188. So apply XHCI_BROKEN_STREAMS quirk to EJ188 as well. Cc: [email protected] Signed-off-by: Kuangyi Chiang <[email protected]> Signed-off-by: Mathias Nyman <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 17bd545 commit 91f7a15

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/usb/host/xhci-pci.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,8 +397,10 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
397397
xhci->quirks |= XHCI_BROKEN_STREAMS;
398398
}
399399
if (pdev->vendor == PCI_VENDOR_ID_ETRON &&
400-
pdev->device == PCI_DEVICE_ID_EJ188)
400+
pdev->device == PCI_DEVICE_ID_EJ188) {
401401
xhci->quirks |= XHCI_RESET_ON_RESUME;
402+
xhci->quirks |= XHCI_BROKEN_STREAMS;
403+
}
402404

403405
if (pdev->vendor == PCI_VENDOR_ID_RENESAS &&
404406
pdev->device == 0x0014) {

0 commit comments

Comments
 (0)