diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-12-03 03:15:39 +0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-01-21 12:27:45 +0400 |
commit | 36fcd06c4638acacee7135906cab60f11ea1ffac (patch) | |
tree | 78c555a9b519510176e63f8d9edfb01c97f4760e /drivers/mfd/vx855.c | |
parent | 97b583f3b491f75712b0edc89c26a112f3847ab3 (diff) | |
download | linux-36fcd06c4638acacee7135906cab60f11ea1ffac.tar.xz |
mfd: 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: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/vx855.c')
-rw-r--r-- | drivers/mfd/vx855.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/vx855.c b/drivers/mfd/vx855.c index 5cd5661158bc..84f01da4875e 100644 --- a/drivers/mfd/vx855.c +++ b/drivers/mfd/vx855.c @@ -118,7 +118,7 @@ static void vx855_remove(struct pci_dev *pdev) pci_disable_device(pdev); } -static DEFINE_PCI_DEVICE_TABLE(vx855_pci_tbl) = { +static const struct pci_device_id vx855_pci_tbl[] = { { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_VX855) }, { 0, } }; |