Commit 39535037 authored by Miguel Gómez's avatar Miguel Gómez Committed by Greg Kroah-Hartman

Staging: ipack/bridges/tpci200: change device table definition and export it.

Use DEFINE_PCI_DEVICE_TABLE() to create the device table and add
MODULE_DEVICE_TABLE() to export it.
Signed-off-by: default avatarMiguel Gómez <magomez@igalia.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1be9bbdd
...@@ -871,12 +871,14 @@ static void __devexit tpci200_pci_remove(struct pci_dev *dev) ...@@ -871,12 +871,14 @@ static void __devexit tpci200_pci_remove(struct pci_dev *dev)
} }
} }
static struct pci_device_id tpci200_idtable[2] = { static DEFINE_PCI_DEVICE_TABLE(tpci200_idtable) = {
{ TPCI200_VENDOR_ID, TPCI200_DEVICE_ID, TPCI200_SUBVENDOR_ID, { TPCI200_VENDOR_ID, TPCI200_DEVICE_ID, TPCI200_SUBVENDOR_ID,
TPCI200_SUBDEVICE_ID }, TPCI200_SUBDEVICE_ID },
{ 0, }, { 0, },
}; };
MODULE_DEVICE_TABLE(pci, tpci200_idtable);
static struct pci_driver tpci200_pci_drv = { static struct pci_driver tpci200_pci_drv = {
.name = "tpci200", .name = "tpci200",
.id_table = tpci200_idtable, .id_table = tpci200_idtable,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment