diff mbox series

usb: dwc3: pci: add ID for the Intel Comet Lake -H variant

Message ID 20191212093713.60614-1-heikki.krogerus@linux.intel.com (mailing list archive)
State Mainlined
Commit 3c3caae4cd6e122472efcf64759ff6392fb6bce2
Headers show
Series usb: dwc3: pci: add ID for the Intel Comet Lake -H variant | expand

Commit Message

Heikki Krogerus Dec. 12, 2019, 9:37 a.m. UTC
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 <heikki.krogerus@linux.intel.com>
---
 drivers/usb/dwc3/dwc3-pci.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

Comments

Greg KH Dec. 12, 2019, 11:16 a.m. UTC | #1
On Thu, Dec 12, 2019 at 12:37:13PM +0300, Heikki Krogerus wrote:
> 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 <heikki.krogerus@linux.intel.com>
> ---
>  drivers/usb/dwc3/dwc3-pci.c | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)

Felipe, any objection for me just taking this to my tree now?

thanks,

greg k-h
Felipe Balbi Dec. 12, 2019, 12:27 p.m. UTC | #2
Hi,

Greg Kroah-Hartman <gregkh@linuxfoundation.org> writes:
> On Thu, Dec 12, 2019 at 12:37:13PM +0300, Heikki Krogerus wrote:
>> 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 <heikki.krogerus@linux.intel.com>
>> ---
>>  drivers/usb/dwc3/dwc3-pci.c | 6 +++++-
>>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> Felipe, any objection for me just taking this to my tree now?

none whatsoever :-)

Acked-by: Felipe Balbi <balbi@kernel.org>
diff mbox series

Patch

diff --git a/drivers/usb/dwc3/dwc3-pci.c b/drivers/usb/dwc3/dwc3-pci.c
index 023f0357efd7..294276f7deb9 100644
--- a/drivers/usb/dwc3/dwc3-pci.c
+++ b/drivers/usb/dwc3/dwc3-pci.c
@@ -29,7 +29,8 @@ 
 #define PCI_DEVICE_ID_INTEL_BXT_M		0x1aaa
 #define PCI_DEVICE_ID_INTEL_APL			0x5aaa
 #define PCI_DEVICE_ID_INTEL_KBP			0xa2b0
-#define PCI_DEVICE_ID_INTEL_CMLH		0x02ee
+#define PCI_DEVICE_ID_INTEL_CMLLP		0x02ee
+#define PCI_DEVICE_ID_INTEL_CMLH		0x06ee
 #define PCI_DEVICE_ID_INTEL_GLK			0x31aa
 #define PCI_DEVICE_ID_INTEL_CNPLP		0x9dee
 #define PCI_DEVICE_ID_INTEL_CNPH		0xa36e
@@ -308,6 +309,9 @@  static const struct pci_device_id dwc3_pci_id_table[] = {
 	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_MRFLD),
 	  (kernel_ulong_t) &dwc3_pci_mrfld_properties, },
 
+	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_CMLLP),
+	  (kernel_ulong_t) &dwc3_pci_intel_properties, },
+
 	{ PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_CMLH),
 	  (kernel_ulong_t) &dwc3_pci_intel_properties, },