Skip to content

Commit 3c3caae

Browse files
Heikki Krogerusgregkh
authored andcommitted
usb: dwc3: pci: add ID for the Intel Comet Lake -H variant
The original ID that was added for Comet Lake PCH was actually for the -LP (low power) variant even though the constant for it said CMLH. Changing that while at it. Signed-off-by: Heikki Krogerus <[email protected]> Acked-by: Felipe Balbi <[email protected]> Cc: stable <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent bd82873 commit 3c3caae

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

drivers/usb/dwc3/dwc3-pci.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@
2929
#define PCI_DEVICE_ID_INTEL_BXT_M 0x1aaa
3030
#define PCI_DEVICE_ID_INTEL_APL 0x5aaa
3131
#define PCI_DEVICE_ID_INTEL_KBP 0xa2b0
32-
#define PCI_DEVICE_ID_INTEL_CMLH 0x02ee
32+
#define PCI_DEVICE_ID_INTEL_CMLLP 0x02ee
33+
#define PCI_DEVICE_ID_INTEL_CMLH 0x06ee
3334
#define PCI_DEVICE_ID_INTEL_GLK 0x31aa
3435
#define PCI_DEVICE_ID_INTEL_CNPLP 0x9dee
3536
#define PCI_DEVICE_ID_INTEL_CNPH 0xa36e
@@ -308,6 +309,9 @@ static const struct pci_device_id dwc3_pci_id_table[] = {
308309
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_MRFLD),
309310
(kernel_ulong_t) &dwc3_pci_mrfld_properties, },
310311

312+
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_CMLLP),
313+
(kernel_ulong_t) &dwc3_pci_intel_properties, },
314+
311315
{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_CMLH),
312316
(kernel_ulong_t) &dwc3_pci_intel_properties, },
313317

0 commit comments

Comments
 (0)