diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-08-22 00:59:19 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-08-22 00:59:19 +0000 |
commit | febc162510373fd73cd26de7bf62e874930257c7 (patch) | |
tree | 5721ce662f55a5d51c738353de8e4950605fbdf8 /arch/mips | |
parent | 6045249bb5bcbd986ddc25b2e426d93bb2e1d521 (diff) |
Don't pretend that a RM7000 is like a R5000.
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/kernel/setup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index 99f254b69..645509e30 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c @@ -4,7 +4,7 @@ * for more details. * * Copyright (C) 1995 Linus Torvalds - * Copyright (C) 1995, 1996, 1997, 1998 Ralf Baechle + * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000 Ralf Baechle * Copyright (C) 1996 Stoned Elipot */ #include <linux/config.h> @@ -195,15 +195,15 @@ static inline void cpu_probe(void) case PRID_IMP_R6000A: mips_cputype = CPU_R6000A; break; + case PRID_IMP_RM7000: + mips_cputype = CPU_R7000; + break; case PRID_IMP_R8000: mips_cputype = CPU_R8000; break; case PRID_IMP_R10000: mips_cputype = CPU_R10000; break; - case PRID_IMP_RM7000: - mips_cputype = CPU_R5000; - break; default: mips_cputype = CPU_UNKNOWN; } |