Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

hwmon: (coretemp) Fix harmless build warning

Fix the following build warning:

CC [M] drivers/hwmon/coretemp.o
drivers/hwmon/coretemp.c: In function "coretemp_init":
drivers/hwmon/coretemp.c:521: warning: unused variable "n"
drivers/hwmon/coretemp.c:521: warning: unused variable "p"

Introduced by commit 851b29cb3b196cb66452ec964ab5f66c9c9cd1ed. When
you drop code, you also have to drop the variables this code was
using.

Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Chen Gong <gong.chen@linux.intel.com>
Cc: Rudolf Marek <r.marek@assembler.cz>
Cc: Huaxu Wan <huaxu.wan@intel.com>

-1
-1
drivers/hwmon/coretemp.c
··· 518 518 static int __init coretemp_init(void) 519 519 { 520 520 int i, err = -ENODEV; 521 - struct pdev_entry *p, *n; 522 521 523 522 /* quick check if we run Intel */ 524 523 if (cpu_data(0).x86_vendor != X86_VENDOR_INTEL)