From: Ralf Baechle Date: Fri, 8 Apr 2005 20:36:05 +0000 (+0000) Subject: Detect the 4KEcR2 and for now detect handle it like the 4KEc. X-Git-Tag: v2.6.15-rc1~731^2~1^2~234 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b07bd0235ca51816e4e43cb6781973358553a1b;p=profile%2Fivi%2Fkernel-x86-ivi.git Detect the 4KEcR2 and for now detect handle it like the 4KEc. Signed-off-by: Ralf Baechle --- diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 69e5fff..ce2966e 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -456,6 +456,10 @@ static inline void cpu_probe_mips(struct cpuinfo_mips *c) c->cputype = CPU_4KEC; c->isa_level = MIPS_CPU_ISA_M32; break; + case PRID_IMP_4KECR2: + c->cputype = CPU_4KEC; + c->isa_level = MIPS_CPU_ISA_M32; + break; case PRID_IMP_4KSC: c->cputype = CPU_4KSC; c->isa_level = MIPS_CPU_ISA_M32;