diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-18 16:58:07 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-07-18 16:58:07 -0700 |
commit | 0178a7a54d408d2c5b7bbe7eee9450bffbec0989 (patch) | |
tree | 22fc73c7ee1b7dd6612ba752dbaa8fa66a042532 /drivers/pcmcia/i82092.c | |
parent | 32182cd39d94fa9586cc08c74fdb30fb718f712d (diff) | |
download | blackbird-op-linux-0178a7a54d408d2c5b7bbe7eee9450bffbec0989.tar.gz blackbird-op-linux-0178a7a54d408d2c5b7bbe7eee9450bffbec0989.zip |
pcmcia: remove DEFINE_PCI_DEVICE_TABLE usage
It's not needed, just use the "real" structure definition instead.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/pcmcia/i82092.c')
-rw-r--r-- | drivers/pcmcia/i82092.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pcmcia/i82092.c b/drivers/pcmcia/i82092.c index 7d47456429a1..aae7e6df99cd 100644 --- a/drivers/pcmcia/i82092.c +++ b/drivers/pcmcia/i82092.c @@ -25,7 +25,7 @@ MODULE_LICENSE("GPL"); /* PCI core routines */ -static DEFINE_PCI_DEVICE_TABLE(i82092aa_pci_ids) = { +static const struct pci_device_id i82092aa_pci_ids[] = { { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82092AA_0) }, { } }; |