On Mon, 6 Feb 2006, Maciej W. Rozycki wrote:
> Not yet, sorry. I have updated my tree and most of my local patches, but
> I have a few to go yet. My time is limited these days, but I'll try hard
> to get at the problems you reported by the coming weekend at the very
> latest.
The following change fixes the problem for me -- it looks like an
omission from some recent changes elsewhere. Ralf, please apply.
Maciej
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
patch-mips-2.6.15-20060124-mips-cpu-isa-0
diff -up --recursive --new-file
linux-mips-2.6.15-20060124.macro/include/asm-mips/cpu.h
linux-mips-2.6.15-20060124/include/asm-mips/cpu.h
--- linux-mips-2.6.15-20060124.macro/include/asm-mips/cpu.h 2005-12-10
05:58:16.000000000 +0000
+++ linux-mips-2.6.15-20060124/include/asm-mips/cpu.h 2006-02-12
02:34:24.000000000 +0000
@@ -204,9 +204,9 @@
*/
#define MIPS_CPU_ISA_I 0x00000001
#define MIPS_CPU_ISA_II 0x00000002
-#define MIPS_CPU_ISA_III 0x00000003
-#define MIPS_CPU_ISA_IV 0x00000004
-#define MIPS_CPU_ISA_V 0x00000005
+#define MIPS_CPU_ISA_III 0x00000004
+#define MIPS_CPU_ISA_IV 0x00000008
+#define MIPS_CPU_ISA_V 0x00000010
#define MIPS_CPU_ISA_M32R1 0x00000020
#define MIPS_CPU_ISA_M32R2 0x00000040
#define MIPS_CPU_ISA_M64R1 0x00000080
|