[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <38004664.ldNRYcghgf@wasted.cogentembedded.com>
Date: Mon, 05 Oct 2015 00:02:38 +0300
From: Sergei Shtylyov <sergei.shtylyov@...entembedded.com>
To: gregkh@...uxfoundation.org, linux-usb@...r.kernel.org, balbi@...com
Cc: linux-kernel@...r.kernel.org, linux-omap@...r.kernel.org
Subject: [PATCH 5/8] dwc3-pci: use PCI_VDEVICE() instead of PCI_DEVICE()
Fix using the PCI_DEVICE() macro instead of less verbose PCI_VDEVICE().
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@...entembedded.com>
---
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-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists