diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-12-06 04:23:08 -0500 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2013-12-06 04:23:41 -0500 |
commit | ba935f40979b32924824759111ed95d35469c5fa (patch) | |
tree | eaee10d2ea00141500dcf1ff837e8963fa37e180 /drivers/edac/i82875p_edac.c | |
parent | 7f3f5240ce64b2b59e2a9a338b4a38931724192a (diff) |
EDAC: Remove DEFINE_PCI_DEVICE_TABLE macro
Currently, there is no other bus that has something like this macro for
their device ids. Thus, DEFINE_PCI_DEVICE_TABLE macro should be removed.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Link: http://lkml.kernel.org/r/001c01ceefb3$5724d860$056e8920$%han@samsung.com
[ Boris: swap commit message with better one. ]
Signed-off-by: Borislav Petkov <bp@suse.de>
Diffstat (limited to 'drivers/edac/i82875p_edac.c')
-rw-r--r-- | drivers/edac/i82875p_edac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/edac/i82875p_edac.c b/drivers/edac/i82875p_edac.c index 2f8535fc451e..80573df0a4d7 100644 --- a/drivers/edac/i82875p_edac.c +++ b/drivers/edac/i82875p_edac.c | |||
@@ -527,7 +527,7 @@ static void i82875p_remove_one(struct pci_dev *pdev) | |||
527 | edac_mc_free(mci); | 527 | edac_mc_free(mci); |
528 | } | 528 | } |
529 | 529 | ||
530 | static DEFINE_PCI_DEVICE_TABLE(i82875p_pci_tbl) = { | 530 | static const struct pci_device_id i82875p_pci_tbl[] = { |
531 | { | 531 | { |
532 | PCI_VEND_DEV(INTEL, 82875_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0, | 532 | PCI_VEND_DEV(INTEL, 82875_0), PCI_ANY_ID, PCI_ANY_ID, 0, 0, |
533 | I82875P}, | 533 | I82875P}, |