summaryrefslogtreecommitdiffstats
path: root/arch/mips/mm
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-08-22 01:03:10 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-08-22 01:03:10 +0000
commit5bf8081ba1569face15661dec4a3dd86667bc8be (patch)
tree0f1f2ec377fb89a261e4b50c42f147531118ce80 /arch/mips/mm
parent9aafbaa2382ffe1909773b07417a5f0f6c63dfb7 (diff)
Yet more RM7000 hooks.
Diffstat (limited to 'arch/mips/mm')
-rw-r--r--arch/mips/mm/loadmmu.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/arch/mips/mm/loadmmu.c b/arch/mips/mm/loadmmu.c
index 69a5e2de5..121cba406 100644
--- a/arch/mips/mm/loadmmu.c
+++ b/arch/mips/mm/loadmmu.c
@@ -2,8 +2,6 @@
* loadmmu.c: Setup cpu/cache specific function ptrs at boot time.
*
* Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
- *
- * $Id: loadmmu.c,v 1.17 2000/03/13 10:33:05 raiko Exp $
*/
#include <linux/config.h>
#include <linux/init.h>
@@ -46,6 +44,9 @@ extern void ld_mmu_r4xx0(void);
#ifdef CONFIG_CPU_R6000
extern void ld_mmu_r6000(void);
#endif
+#ifdef CONFIG_CPU_R7000
+extern void ld_mmu_r7000(void);
+#endif
#ifdef CONFIG_CPU_R8000
extern void ld_mmu_tfp(void);
#endif
@@ -88,6 +89,13 @@ void __init loadmmu(void)
break;
#endif
+#if defined(CONFIG_CPU_RM7000)
+ case CPU_RM7000:
+ printk("Loading RM7000 MMU routines.\n");
+ ld_mmu_rm7k();
+ break;
+#endif
+
#ifdef CONFIG_CPU_R10000
case CPU_R10000:
printk("Loading R10000 MMU routines.\n");