diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-12-03 08:10:29 +0100 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2014-01-15 06:36:30 +0100 |
commit | cd9bb0564c551f8a72763dd45590e9ea6787811e (patch) | |
tree | 009f16efee0737510a2ad6e99ac75271427b2b66 /drivers/hwmon/k8temp.c | |
parent | hwmon: (coretemp) Fix truncated name of alarm attributes (diff) | |
download | linux-cd9bb0564c551f8a72763dd45590e9ea6787811e.tar.xz linux-cd9bb0564c551f8a72763dd45590e9ea6787811e.zip |
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/k8temp.c')
-rw-r--r-- | drivers/hwmon/k8temp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hwmon/k8temp.c b/drivers/hwmon/k8temp.c index 5b50e9e4f96b..734d55d48cc8 100644 --- a/drivers/hwmon/k8temp.c +++ b/drivers/hwmon/k8temp.c @@ -135,7 +135,7 @@ static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp, NULL, 1, 0); static SENSOR_DEVICE_ATTR_2(temp4_input, S_IRUGO, show_temp, NULL, 1, 1); static DEVICE_ATTR(name, S_IRUGO, show_name, NULL); -static DEFINE_PCI_DEVICE_TABLE(k8temp_ids) = { +static const struct pci_device_id k8temp_ids[] = { { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_K8_NB_MISC) }, { 0 }, }; |