diff options
author | Andrew Isaacson <adi@broadcom.com> | 2005-10-20 08:56:20 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 20:32:46 +0200 |
commit | 93ce2f524e96571711029884e6340c790a029b94 (patch) | |
tree | 1cb69ac513d01b25a2c300c90a2f11c69c0290e9 /arch/mips/kernel/cpu-probe.c | |
parent | Sibyte header cleanup (diff) | |
download | linux-93ce2f524e96571711029884e6340c790a029b94.tar.xz linux-93ce2f524e96571711029884e6340c790a029b94.zip |
Add support for SB1A CPU.
Signed-Off-By: Andy Isaacson <adi@broadcom.com>
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.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index f7a841573b84..a263fb7a3971 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -623,6 +623,9 @@ static inline void cpu_probe_sibyte(struct cpuinfo_mips *c) c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR); #endif break; + case PRID_IMP_SB1A: + c->cputype = CPU_SB1A; + break; } } |