aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/misc/genwqe
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-18 19:54:23 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-18 19:54:23 -0400
commit32182cd39d94fa9586cc08c74fdb30fb718f712d (patch)
treec7aebed0f7bb4163e1128e2ebcdae2dc8da2e19b /drivers/misc/genwqe
parent7426d29ea1564c147d8401fb42d6f3d127db6bdd (diff)
misc: remove DEFINE_PCI_DEVICE_TABLE usage
Removes DEFINE_PCI_DEVICE_TABLE from drivers/misc/genwqe/card_base.c, drivers/misc/genwqe/card_base.c, and drivers/misc/vmw_vmci/vmci_guest.c in preferance of a "real" structure definition. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/genwqe')
-rw-r--r--drivers/misc/genwqe/card_base.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/genwqe/card_base.c b/drivers/misc/genwqe/card_base.c
index dc8c04ae5113..43bbabc96b6c 100644
--- a/drivers/misc/genwqe/card_base.c
+++ b/drivers/misc/genwqe/card_base.c
@@ -57,7 +57,7 @@ static struct dentry *debugfs_genwqe;
57static struct genwqe_dev *genwqe_devices[GENWQE_CARD_NO_MAX]; 57static struct genwqe_dev *genwqe_devices[GENWQE_CARD_NO_MAX];
58 58
59/* PCI structure for identifying device by PCI vendor and device ID */ 59/* PCI structure for identifying device by PCI vendor and device ID */
60static DEFINE_PCI_DEVICE_TABLE(genwqe_device_table) = { 60static const struct pci_device_id genwqe_device_table[] = {
61 { .vendor = PCI_VENDOR_ID_IBM, 61 { .vendor = PCI_VENDOR_ID_IBM,
62 .device = PCI_DEVICE_GENWQE, 62 .device = PCI_DEVICE_GENWQE,
63 .subvendor = PCI_SUBVENDOR_ID_IBM, 63 .subvendor = PCI_SUBVENDOR_ID_IBM,