diff options
| author | Jingoo Han <jg1.han@samsung.com> | 2013-12-03 08:26:00 +0900 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-12-02 22:32:35 -0800 |
| commit | 41e043fcfa2236bb2c4a8335eb09f4c8cee224b3 (patch) | |
| tree | 68e847050a8bfe041a326aefbad99347e977e9f1 /drivers/staging/sep | |
| parent | 06749f192b740651302a84273707d0b66749d126 (diff) | |
| download | talos-op-linux-41e043fcfa2236bb2c4a8335eb09f4c8cee224b3.tar.gz talos-op-linux-41e043fcfa2236bb2c4a8335eb09f4c8cee224b3.zip | |
staging: remove DEFINE_PCI_DEVICE_TABLE macro
Don't use DEFINE_PCI_DEVICE_TABLE macro, because this macro
is not preferred.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/sep')
| -rw-r--r-- | drivers/staging/sep/sep_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/sep/sep_main.c b/drivers/staging/sep/sep_main.c index 1e80a4013b8c..dca838d043e5 100644 --- a/drivers/staging/sep/sep_main.c +++ b/drivers/staging/sep/sep_main.c @@ -4292,7 +4292,7 @@ static void sep_remove(struct pci_dev *pdev) } /* Initialize struct pci_device_id for our driver */ -static DEFINE_PCI_DEVICE_TABLE(sep_pci_id_tbl) = { +static const struct pci_device_id sep_pci_id_tbl[] = { {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x0826)}, {PCI_DEVICE(PCI_VENDOR_ID_INTEL, 0x08e9)}, {0} |

