hwmon: (coretemp) Fix cpu model output

Avoid hex and decimal confusion when printing out the cpu model.

Signed-off-by: Prarit Bhargava <prarit@redhat.com>
Signed-off-by: Jean Delvare <khali@linux-fr.org>

authored by Prarit Bhargava and committed by Jean Delvare fcc6a746 b72c4094

+1 -1
+1 -1
drivers/hwmon/coretemp.c
··· 466 466 family 6 CPU */ 467 467 if ((c->x86 == 0x6) && (c->x86_model > 0xf)) 468 468 printk(KERN_WARNING DRVNAME ": Unknown CPU " 469 - "model %x\n", c->x86_model); 469 + "model 0x%x\n", c->x86_model); 470 470 continue; 471 471 } 472 472