Skip to content

Commit ccc04af

Browse files
LuBaolugregkh
authored andcommitted
usb: xhci: apply XHCI_PME_STUCK_QUIRK to Intel Broxton-M platforms
Intel Broxton M was verifed to require XHCI_PME_STUCK_QUIRK quirk as well. Cc: [email protected] Signed-off-by: Lu Baolu <[email protected]> Signed-off-by: Mathias Nyman <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 92149c9 commit ccc04af

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
@@ -47,6 +47,7 @@
4747
#define PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI 0x22b5
4848
#define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI 0xa12f
4949
#define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI 0x9d2f
50+
#define PCI_DEVICE_ID_INTEL_BROXTON_M_XHCI 0x0aa8
5051

5152
static const char hcd_name[] = "xhci_hcd";
5253

@@ -153,7 +154,8 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
153154
if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
154155
(pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI ||
155156
pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI ||
156-
pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI)) {
157+
pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI ||
158+
pdev->device == PCI_DEVICE_ID_INTEL_BROXTON_M_XHCI)) {
157159
xhci->quirks |= XHCI_PME_STUCK_QUIRK;
158160
}
159161
if (pdev->vendor == PCI_VENDOR_ID_INTEL &&

0 commit comments

Comments
 (0)