diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-10-12 03:19:41 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-10-12 03:19:41 +0000 |
commit | c4a2a91dd053af588f69a4da0f9408da334869f7 (patch) | |
tree | 6d92a7c9bd79249450d74020d6480d1e5d902e30 /arch/mips/mm | |
parent | 73c5574a141032a6d588b0e25be6d76bbf7b991d (diff) |
DDB5476 support from Jun Sun.
Diffstat (limited to 'arch/mips/mm')
-rw-r--r-- | arch/mips/mm/Makefile | 4 | ||||
-rw-r--r-- | arch/mips/mm/loadmmu.c | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/arch/mips/mm/Makefile b/arch/mips/mm/Makefile index eb17ba7d4..409726924 100644 --- a/arch/mips/mm/Makefile +++ b/arch/mips/mm/Makefile @@ -26,6 +26,10 @@ ifdef CONFIG_CPU_R5000 O_OBJS += r4xx0.o endif +ifdef CONFIG_CPU_R5432 +O_OBJS += r4xx0.o +endif + ifdef CONFIG_CPU_RM7000 O_OBJS += rm7k.o endif diff --git a/arch/mips/mm/loadmmu.c b/arch/mips/mm/loadmmu.c index 5dd412b36..8031297f0 100644 --- a/arch/mips/mm/loadmmu.c +++ b/arch/mips/mm/loadmmu.c @@ -56,7 +56,8 @@ void __init loadmmu(void) #endif #if defined(CONFIG_CPU_R4X00) || defined(CONFIG_CPU_R4300) || \ - defined(CONFIG_CPU_R5000) || defined(CONFIG_CPU_NEVADA) + defined(CONFIG_CPU_R5000) || defined(CONFIG_CPU_R5432) || \ + defined(CONFIG_CPU_NEVADA) case CPU_R4000PC: case CPU_R4000SC: case CPU_R4000MC: @@ -71,6 +72,7 @@ void __init loadmmu(void) case CPU_R4700: case CPU_R5000: case CPU_R5000A: + case CPU_R5432: case CPU_NEVADA: printk("Loading R4000 MMU routines.\n"); ld_mmu_r4xx0(); |