aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/kernel/cpu-probe.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2005-04-08 16:36:05 -0400
committerRalf Baechle <ralf@linux-mips.org>2005-10-29 14:31:03 -0400
commit2b07bd0235ca51816e4e43cb6781973358553a1b (patch)
tree91ca54b4880c91320d30e66b487274aa01c0b907 /arch/mips/kernel/cpu-probe.c
parentfe359bf58414478a0ddbd65923e2f1aceedf330f (diff)
Detect the 4KEcR2 and for now detect handle it like the 4KEc.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/cpu-probe.c')
-rw-r--r--arch/mips/kernel/cpu-probe.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c
index 69e5fff00edc..ce2966e9eb5a 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)
456 c->cputype = CPU_4KEC; 456 c->cputype = CPU_4KEC;
457 c->isa_level = MIPS_CPU_ISA_M32; 457 c->isa_level = MIPS_CPU_ISA_M32;
458 break; 458 break;
459 case PRID_IMP_4KECR2:
460 c->cputype = CPU_4KEC;
461 c->isa_level = MIPS_CPU_ISA_M32;
462 break;
459 case PRID_IMP_4KSC: 463 case PRID_IMP_4KSC:
460 c->cputype = CPU_4KSC; 464 c->cputype = CPU_4KSC;
461 c->isa_level = MIPS_CPU_ISA_M32; 465 c->isa_level = MIPS_CPU_ISA_M32;