Merge tag 'pci-v3.17-changes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci
Pull DEFINE_PCI_DEVICE_TABLE removal from Bjorn Helgaas: "Part two of the PCI changes for v3.17: - Remove DEFINE_PCI_DEVICE_TABLE macro use (Benoit Taine) It's a mechanical change that removes uses of the DEFINE_PCI_DEVICE_TABLE macro. I waited until later in the merge window to reduce conflicts, but it's possible you'll still see a few" * tag 'pci-v3.17-changes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci: PCI: Remove DEFINE_PCI_DEVICE_TABLE macro use
This commit is contained in:
@@ -184,7 +184,7 @@
|
||||
#define CONFIG0H_DMA_ON_NORX CONFIG0H_DMA_OFF| OBOE_CONFIG0H_ENDMAC
|
||||
#define CONFIG0H_DMA_ON CONFIG0H_DMA_ON_NORX | OBOE_CONFIG0H_ENRX
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(toshoboe_pci_tbl) = {
|
||||
static const struct pci_device_id toshoboe_pci_tbl[] = {
|
||||
{ PCI_VENDOR_ID_TOSHIBA, PCI_DEVICE_ID_FIR701, PCI_ANY_ID, PCI_ANY_ID, },
|
||||
{ PCI_VENDOR_ID_TOSHIBA, PCI_DEVICE_ID_FIRD01, PCI_ANY_ID, PCI_ANY_ID, },
|
||||
{ } /* Terminating entry */
|
||||
|
@@ -115,7 +115,7 @@ static void iodelay(int udelay)
|
||||
}
|
||||
}
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(via_pci_tbl) = {
|
||||
static const struct pci_device_id via_pci_tbl[] = {
|
||||
{ PCI_VENDOR_ID_VIA, 0x8231, PCI_ANY_ID, PCI_ANY_ID,0,0,0 },
|
||||
{ PCI_VENDOR_ID_VIA, 0x3109, PCI_ANY_ID, PCI_ANY_ID,0,0,1 },
|
||||
{ PCI_VENDOR_ID_VIA, 0x3074, PCI_ANY_ID, PCI_ANY_ID,0,0,2 },
|
||||
|
@@ -58,7 +58,7 @@ MODULE_LICENSE("GPL");
|
||||
|
||||
static /* const */ char drivername[] = DRIVER_NAME;
|
||||
|
||||
static DEFINE_PCI_DEVICE_TABLE(vlsi_irda_table) = {
|
||||
static const struct pci_device_id vlsi_irda_table[] = {
|
||||
{
|
||||
.class = PCI_CLASS_WIRELESS_IRDA << 8,
|
||||
.class_mask = PCI_CLASS_SUBCLASS_MASK << 8,
|
||||
|
Reference in New Issue
Block a user