Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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_SUBDEVICE_ID },
	{ 0, },
};

MODULE_DEVICE_TABLE(pci, tpci200_idtable);

static struct pci_driver tpci200_pci_drv = {
	.name = "tpci200",
	.id_table = tpci200_idtable,