[MIPS] SB1: Only pass1 FPUs are broken beyond recovery. The wrong revision number in the check was forcing a fallback to FPU emulation for all SB1 cores in 2.6. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

+1 -1
+1 -1
arch/mips/kernel/cpu-probe.c
··· 655 case PRID_IMP_SB1: 656 c->cputype = CPU_SB1; 657 /* FPU in pass1 is known to have issues. */ 658 - if ((c->processor_id & 0xff) < 0x20) 659 c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR); 660 break; 661 case PRID_IMP_SB1A:
··· 655 case PRID_IMP_SB1: 656 c->cputype = CPU_SB1; 657 /* FPU in pass1 is known to have issues. */ 658 + if ((c->processor_id & 0xff) < 0x02) 659 c->options &= ~(MIPS_CPU_FPU | MIPS_CPU_32FPR); 660 break; 661 case PRID_IMP_SB1A: