Fix using the PCI_DEVICE() macro instead of less verbose PCI_VDEVICE(). Signed-off-by: Sergei Shtylyov <sergei.shtylyov@xxxxxxxxxxxxxxxxxx> --- drivers/usb/dwc3/dwc3-pci.c | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) Index: usb/drivers/usb/dwc3/dwc3-pci.c =================================================================== --- usb.orig/drivers/usb/dwc3/dwc3-pci.c +++ usb/drivers/usb/dwc3/dwc3-pci.c @@ -174,16 +174,13 @@ static void dwc3_pci_remove(struct pci_d } static const struct pci_device_id dwc3_pci_id_table[] = { - { - PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS, - PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3), - }, - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BSW), }, - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT), }, - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_MRFLD), }, - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTLP), }, - { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_SPTH), }, - { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_NL_USB), }, + { PCI_VDEVICE(SYNOPSYS, PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3), }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_BSW), }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_BYT), }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_MRFLD), }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_SPTLP), }, + { PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_SPTH), }, + { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_NL_USB), }, { } /* Terminating Entry */ }; MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table); -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html