The Broadcom BCM3302 core is present in both the BCM47xx and the BCM6338 SoC. If people want to report a kernel oops it might be convenient to know about the real system they are running Linux on at first glance. Set the CPU name to be 3302 on BCM47xx and 6338 on BCM63xx. Signed-off-by: Florian Fainelli <florian@xxxxxxxxxxx> --- diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 251a268..405e9d4 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -862,7 +862,11 @@ static inline void cpu_probe_broadcom(struct cpuinfo_mips *c, unsigned int cpu) case PRID_IMP_BCM3302: /* same as PRID_IMP_BCM6338 */ c->cputype = CPU_BCM3302; +#ifdef CONFIG_BCM47XX __cpu_name[cpu] = "Broadcom BCM3302"; +#else + __cpu_name[cpu] = "Broadcom BCM6338"; +#endif break; case PRID_IMP_BCM4710: c->cputype = CPU_BCM4710;