File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 57
57
#define PCI_DEVICE_ID_AMD_PROMONTORYA_3 0x43ba
58
58
#define PCI_DEVICE_ID_AMD_PROMONTORYA_2 0x43bb
59
59
#define PCI_DEVICE_ID_AMD_PROMONTORYA_1 0x43bc
60
+ #define PCI_DEVICE_ID_ASMEDIA_1042_XHCI 0x1042
60
61
#define PCI_DEVICE_ID_ASMEDIA_1042A_XHCI 0x1142
62
+ #define PCI_DEVICE_ID_ASMEDIA_2142_XHCI 0x2142
61
63
62
64
static const char hcd_name [] = "xhci_hcd" ;
63
65
@@ -260,13 +262,13 @@ static void xhci_pci_quirks(struct device *dev, struct xhci_hcd *xhci)
260
262
xhci -> quirks |= XHCI_LPM_SUPPORT ;
261
263
262
264
if (pdev -> vendor == PCI_VENDOR_ID_ASMEDIA &&
263
- pdev -> device == 0x1042 )
265
+ pdev -> device == PCI_DEVICE_ID_ASMEDIA_1042_XHCI )
264
266
xhci -> quirks |= XHCI_BROKEN_STREAMS ;
265
267
if (pdev -> vendor == PCI_VENDOR_ID_ASMEDIA &&
266
- pdev -> device == 0x1142 )
268
+ pdev -> device == PCI_DEVICE_ID_ASMEDIA_1042A_XHCI )
267
269
xhci -> quirks |= XHCI_TRUST_TX_LENGTH ;
268
270
if (pdev -> vendor == PCI_VENDOR_ID_ASMEDIA &&
269
- pdev -> device == 0x2142 )
271
+ pdev -> device == PCI_DEVICE_ID_ASMEDIA_2142_XHCI )
270
272
xhci -> quirks |= XHCI_NO_64BIT_SUPPORT ;
271
273
272
274
if (pdev -> vendor == PCI_VENDOR_ID_ASMEDIA &&
You can’t perform that action at this time.
0 commit comments