MIPS: BMIPS: Pretty print BMIPS5200 processor name
Just to ease debugging of multiplatform kernel, make sure we print
"Broadcom BMIPS5200" for the BMIPS5200 implementation instead of
Broadcom BMIPS5000.
Fixes: 68e6a78373
("MIPS: BMIPS: Add PRId for BMIPS5200 (Whirlwind)")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/13014/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
parent
f337967d6d
commit
37808d62af
|
@ -1459,7 +1459,10 @@ static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu)
|
|||
case PRID_IMP_BMIPS5000:
|
||||
case PRID_IMP_BMIPS5200:
|
||||
c->cputype = CPU_BMIPS5000;
|
||||
__cpu_name[cpu] = "Broadcom BMIPS5000";
|
||||
if ((c->processor_id & PRID_IMP_MASK) == PRID_IMP_BMIPS5200)
|
||||
__cpu_name[cpu] = "Broadcom BMIPS5200";
|
||||
else
|
||||
__cpu_name[cpu] = "Broadcom BMIPS5000";
|
||||
set_elf_platform(cpu, "bmips5000");
|
||||
c->options |= MIPS_CPU_ULRI;
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue