aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/hwmon/coretemp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c
index 5c7cd60d5f9..a00245eb3fa 100644
--- a/drivers/hwmon/coretemp.c
+++ b/drivers/hwmon/coretemp.c
@@ -51,10 +51,12 @@
51#define TO_PHYS_ID(cpu) cpu_data(cpu).phys_proc_id 51#define TO_PHYS_ID(cpu) cpu_data(cpu).phys_proc_id
52#define TO_CORE_ID(cpu) cpu_data(cpu).cpu_core_id 52#define TO_CORE_ID(cpu) cpu_data(cpu).cpu_core_id
53#define TO_ATTR_NO(cpu) (TO_CORE_ID(cpu) + BASE_SYSFS_ATTR_NO) 53#define TO_ATTR_NO(cpu) (TO_CORE_ID(cpu) + BASE_SYSFS_ATTR_NO)
54#define for_each_sibling(i, cpu) for_each_cpu(i, cpu_sibling_mask(cpu))
54#else 55#else
55#define TO_PHYS_ID(cpu) (cpu) 56#define TO_PHYS_ID(cpu) (cpu)
56#define TO_CORE_ID(cpu) (cpu) 57#define TO_CORE_ID(cpu) (cpu)
57#define TO_ATTR_NO(cpu) (cpu) 58#define TO_ATTR_NO(cpu) (cpu)
59#define for_each_sibling(i, cpu) for (i = 0; false; )
58#endif 60#endif
59 61
60/* 62/*
@@ -762,7 +764,7 @@ static void __cpuinit put_core_offline(unsigned int cpu)
762 coretemp_remove_core(pdata, &pdev->dev, indx); 764 coretemp_remove_core(pdata, &pdev->dev, indx);
763 765
764 /* Online the HT version of this core, if any */ 766 /* Online the HT version of this core, if any */
765 for_each_cpu(i, cpu_sibling_mask(cpu)) { 767 for_each_sibling(i, cpu) {
766 if (i != cpu) { 768 if (i != cpu) {
767 get_core_online(i); 769 get_core_online(i);
768 break; 770 break;