diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-12-03 07:10:29 +0000 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2014-01-14 21:36:30 -0800 |
commit | cd9bb0564c551f8a72763dd45590e9ea6787811e (patch) | |
tree | 009f16efee0737510a2ad6e99ac75271427b2b66 /drivers/hwmon/vt8231.c | |
parent | 3f9aec7610b39521c7c69d754de7265f6994c194 (diff) |
hwmon: 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>
Acked-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon/vt8231.c')
-rw-r--r-- | drivers/hwmon/vt8231.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/vt8231.c b/drivers/hwmon/vt8231.c index aee14e2192f8..b3babe3326fb 100644 --- a/drivers/hwmon/vt8231.c +++ b/drivers/hwmon/vt8231.c @@ -766,7 +766,7 @@ static struct platform_driver vt8231_driver = { .remove = vt8231_remove, }; -static DEFINE_PCI_DEVICE_TABLE(vt8231_pci_ids) = { +static const struct pci_device_id vt8231_pci_ids[] = { { PCI_DEVICE(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8231_4) }, { 0, } }; |