diff options
| author | Guenter Roeck <guenter.roeck@ericsson.com> | 2011-05-23 12:06:41 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 11:59:08 -0700 | 
| commit | bb74e8ca352eecefdc5c1a9ebab01f18aa2f6f3c (patch) | |
| tree | a57fdd270cf3e41e2de501074d3ac8558cd9b7c2 /drivers | |
| parent | 30cb6d5f2eb24d15d20139d5ceefaccc68734bd7 (diff) | |
| download | olio-linux-3.10-bb74e8ca352eecefdc5c1a9ebab01f18aa2f6f3c.tar.xz olio-linux-3.10-bb74e8ca352eecefdc5c1a9ebab01f18aa2f6f3c.zip  | |
hwmon: (coretemp) Fix compile error if CONFIG_SMP is not defined
cpu_sibling_mask() is not defined unless CONFIG_SMP is defined, so it
must not be used directly in the code without ifdef protection.
To solve the problem and avoid ifdefs in the code, define
for_each_sibling() and use it instead.
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Cc: Fenghua Yu <fenghua.yu@intel.com>
Cc: Durgadoss R <durgadoss.r@intel.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/hwmon/coretemp.c | 4 | 
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 @@  #define TO_PHYS_ID(cpu)		cpu_data(cpu).phys_proc_id  #define TO_CORE_ID(cpu)		cpu_data(cpu).cpu_core_id  #define TO_ATTR_NO(cpu)		(TO_CORE_ID(cpu) + BASE_SYSFS_ATTR_NO) +#define for_each_sibling(i, cpu)	for_each_cpu(i, cpu_sibling_mask(cpu))  #else  #define TO_PHYS_ID(cpu)		(cpu)  #define TO_CORE_ID(cpu)		(cpu)  #define TO_ATTR_NO(cpu)		(cpu) +#define for_each_sibling(i, cpu)	for (i = 0; false; )  #endif  /* @@ -762,7 +764,7 @@ static void __cpuinit put_core_offline(unsigned int cpu)  		coretemp_remove_core(pdata, &pdev->dev, indx);  	/* Online the HT version of this core, if any */ -	for_each_cpu(i, cpu_sibling_mask(cpu)) { +	for_each_sibling(i, cpu) {  		if (i != cpu) {  			get_core_online(i);  			break;  |