Skip to content

Commit 4c54b01

Browse files
LuBaolusashalevin
authored andcommitted
usb: xhci: apply XHCI_PME_STUCK_QUIRK to Intel Broxton-M platforms
[ Upstream commit ccc04af ] 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]> Signed-off-by: Sasha Levin <[email protected]>
1 parent c6fd1e6 commit 4c54b01

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

@@ -147,7 +148,8 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
147148
if (pdev->vendor == PCI_VENDOR_ID_INTEL &&
148149
(pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI ||
149150
pdev->device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI ||
150-
pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI)) {
151+
pdev->device == PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI ||
152+
pdev->device == PCI_DEVICE_ID_INTEL_BROXTON_M_XHCI)) {
151153
xhci->quirks |= XHCI_PME_STUCK_QUIRK;
152154
}
153155
if (pdev->vendor == PCI_VENDOR_ID_INTEL &&

0 commit comments

Comments
 (0)