diff options
author | Thiemo Seufer <ths@networkno.de> | 2005-07-27 21:48:12 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 19:31:58 +0100 |
commit | 075e7502d9701dbc206ed32046888acfc8a4bb73 (patch) | |
tree | 54e315970e45b2d2cb2a22f3709291406a6ecede /arch/mips/kernel | |
parent | 23fbee9dd5d2a41d36af49ff8e1669fb0c29fda8 (diff) | |
download | talos-obmc-linux-075e7502d9701dbc206ed32046888acfc8a4bb73.tar.gz talos-obmc-linux-075e7502d9701dbc206ed32046888acfc8a4bb73.zip |
R4600 has 32 FPRs.
Signed-off-by: Thiemo Seufer <ths@networkno.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel')
-rw-r--r-- | arch/mips/kernel/cpu-probe.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/mips/kernel/cpu-probe.c b/arch/mips/kernel/cpu-probe.c index 70c8ad9bc8fc..5d71eca41575 100644 --- a/arch/mips/kernel/cpu-probe.c +++ b/arch/mips/kernel/cpu-probe.c @@ -277,7 +277,8 @@ static inline void cpu_probe_legacy(struct cpuinfo_mips *c) case PRID_IMP_R4600: c->cputype = CPU_R4600; c->isa_level = MIPS_CPU_ISA_III; - c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_LLSC; + c->options = R4K_OPTS | MIPS_CPU_FPU | MIPS_CPU_32FPR | + MIPS_CPU_LLSC; c->tlbsize = 48; break; #if 0 |