MIPS: kernel: cpu-probe: Report CPU id during probe
Signed-off-by: Leonid Yegoshin <Leonid.Yegoshin@imgtec.com> Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/6023/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
40b15b2808
commit
d9f897c912
1 changed files with 2 additions and 2 deletions
|
@ -1099,8 +1099,8 @@ void cpu_report(void)
|
||||||
{
|
{
|
||||||
struct cpuinfo_mips *c = ¤t_cpu_data;
|
struct cpuinfo_mips *c = ¤t_cpu_data;
|
||||||
|
|
||||||
printk(KERN_INFO "CPU revision is: %08x (%s)\n",
|
pr_info("CPU%d revision is: %08x (%s)\n",
|
||||||
c->processor_id, cpu_name_string());
|
smp_processor_id(), c->processor_id, cpu_name_string());
|
||||||
if (c->options & MIPS_CPU_FPU)
|
if (c->options & MIPS_CPU_FPU)
|
||||||
printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
|
printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue