Skip to content

Commit a214339

Browse files
David Cohengregkh
authored andcommitted
usb: chipidea: add Intel Clovertrail pci id
Also clean up the last item of the pci id list to be "cleaner". Signed-off-by: David Cohen <[email protected]> Cc: stable <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent bdd78f2 commit a214339

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

drivers/usb/chipidea/ci_hdrc_pci.c

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,12 @@ static DEFINE_PCI_DEVICE_TABLE(ci_hdrc_pci_id_table) = {
129129
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0829),
130130
.driver_data = (kernel_ulong_t)&penwell_pci_platdata,
131131
},
132-
{ 0, 0, 0, 0, 0, 0, 0 /* end: all zeroes */ }
132+
{
133+
/* Intel Clovertrail */
134+
PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0xe006),
135+
.driver_data = (kernel_ulong_t)&penwell_pci_platdata,
136+
},
137+
{ 0 } /* end: all zeroes */
133138
};
134139
MODULE_DEVICE_TABLE(pci, ci_hdrc_pci_id_table);
135140

0 commit comments

Comments
 (0)