File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 47
47
#define PCI_DEVICE_ID_INTEL_CHERRYVIEW_XHCI 0x22b5
48
48
#define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_H_XHCI 0xa12f
49
49
#define PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI 0x9d2f
50
+ #define PCI_DEVICE_ID_INTEL_BROXTON_M_XHCI 0x0aa8
50
51
51
52
static const char hcd_name [] = "xhci_hcd" ;
52
53
@@ -153,7 +154,8 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
153
154
if (pdev -> vendor == PCI_VENDOR_ID_INTEL &&
154
155
(pdev -> device == PCI_DEVICE_ID_INTEL_SUNRISEPOINT_LP_XHCI ||
155
156
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 )) {
157
159
xhci -> quirks |= XHCI_PME_STUCK_QUIRK ;
158
160
}
159
161
if (pdev -> vendor == PCI_VENDOR_ID_INTEL &&
You can’t perform that action at this time.
0 commit comments