We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eee41b4 commit 85601f8Copy full SHA for 85601f8
drivers/usb/dwc3/dwc3-pci.c
@@ -29,6 +29,7 @@
29
#define PCI_VENDOR_ID_SYNOPSYS 0x16c3
30
#define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3 0xabcd
31
#define PCI_DEVICE_ID_INTEL_BYT 0x0f37
32
+#define PCI_DEVICE_ID_INTEL_MRFLD 0x119e
33
34
struct dwc3_pci {
35
struct device *dev;
@@ -189,6 +190,7 @@ static DEFINE_PCI_DEVICE_TABLE(dwc3_pci_id_table) = {
189
190
PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3),
191
},
192
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT), },
193
+ { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MRFLD), },
194
{ } /* Terminating Entry */
195
};
196
MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table);
0 commit comments