diff options
author | Leonid Yegoshin <Leonid.Yegoshin@imgtec.com> | 2013-10-07 05:43:32 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-10-29 16:25:33 -0400 |
commit | d9f897c912b4108076afb00036a139e3b8144a64 (patch) | |
tree | c4e568e87a5aab3581db636c3b8750e963d693da /arch | |
parent | 40b15b28083abc00c9ffb830c07e5ef72a1e53b6 (diff) |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/kernel/cpu-probe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 040b83de00ac..c814287bdf5d 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c | |||
@@ -1099,8 +1099,8 @@ void cpu_report(void) | |||
1099 | { | 1099 | { |
1100 | struct cpuinfo_mips *c = ¤t_cpu_data; | 1100 | struct cpuinfo_mips *c = ¤t_cpu_data; |
1101 | 1101 | ||
1102 | printk(KERN_INFO "CPU revision is: %08x (%s)\n", | 1102 | pr_info("CPU%d revision is: %08x (%s)\n", |
1103 | c->processor_id, cpu_name_string()); | 1103 | smp_processor_id(), c->processor_id, cpu_name_string()); |
1104 | if (c->options & MIPS_CPU_FPU) | 1104 | if (c->options & MIPS_CPU_FPU) |
1105 | printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id); | 1105 | printk(KERN_INFO "FPU revision is: %08x\n", c->fpu_id); |
1106 | } | 1106 | } |