aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/pkgtemp.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/pkgtemp.c')
-rw-r--r--drivers/hwmon/pkgtemp.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/hwmon/pkgtemp.c b/drivers/hwmon/pkgtemp.c
index f7ddee5fe9d5..ab89f23eebdf 100644
--- a/drivers/hwmon/pkgtemp.c
+++ b/drivers/hwmon/pkgtemp.c
@@ -284,9 +284,10 @@ static int __cpuinit pkgtemp_device_add(unsigned int cpu)
284 int err; 284 int err;
285 struct platform_device *pdev; 285 struct platform_device *pdev;
286 struct pdev_entry *pdev_entry; 286 struct pdev_entry *pdev_entry;
287#ifdef CONFIG_SMP
288 struct cpuinfo_x86 *c = &cpu_data(cpu); 287 struct cpuinfo_x86 *c = &cpu_data(cpu);
289#endif 288
289 if (!cpu_has(c, X86_FEATURE_PTS))
290 return 0;
290 291
291 mutex_lock(&pdev_list_mutex); 292 mutex_lock(&pdev_list_mutex);
292 293
@@ -403,11 +404,6 @@ static int __init pkgtemp_init(void)
403 goto exit; 404 goto exit;
404 405
405 for_each_online_cpu(i) { 406 for_each_online_cpu(i) {
406 struct cpuinfo_x86 *c = &cpu_data(i);
407
408 if (!cpu_has(c, X86_FEATURE_PTS))
409 continue;
410
411 err = pkgtemp_device_add(i); 407 err = pkgtemp_device_add(i);
412 if (err) 408 if (err)
413 goto exit_devices_unreg; 409 goto exit_devices_unreg;