From: Jean Delvare Date: Fri, 9 Jul 2010 14:22:51 +0000 (+0200) Subject: hwmon: (coretemp) Properly label the sensors X-Git-Tag: v2.6.35-rc5~6^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3f4f09b4be35d38d6e2bf22c989443e65e70fc4c;p=platform%2Fkernel%2Flinux-exynos.git hwmon: (coretemp) Properly label the sensors Don't assume that CPU entry number and core ID always match. It worked in the simple cases (single CPU, no HT) but fails on multi-CPU systems. Signed-off-by: Jean Delvare Acked-by: Huaxu Wan Cc: stable@kernel.org --- diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c index 3b168fa..05344af 100644 --- a/drivers/hwmon/coretemp.c +++ b/drivers/hwmon/coretemp.c @@ -53,6 +53,7 @@ struct coretemp_data { struct mutex update_lock; const char *name; u32 id; + u16 core_id; char valid; /* zero until following fields are valid */ unsigned long last_updated; /* in jiffies */ int temp; @@ -75,7 +76,7 @@ static ssize_t show_name(struct device *dev, struct device_attribute if (attr->index == SHOW_NAME) ret = sprintf(buf, "%s\n", data->name); else /* show label */ - ret = sprintf(buf, "Core %d\n", data->id); + ret = sprintf(buf, "Core %d\n", data->core_id); return ret; } @@ -304,6 +305,9 @@ static int __devinit coretemp_probe(struct platform_device *pdev) } data->id = pdev->id; +#ifdef CONFIG_SMP + data->core_id = c->cpu_core_id; +#endif data->name = "coretemp"; mutex_init(&data->update_lock);