diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-09-24 00:20:20 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-09-24 00:20:20 +0000 |
commit | fa221aa73170ee6dd3307f749455d37c93f0aae7 (patch) | |
tree | 0c0d6519a6a9cbdef518700d6f6d5d4bdb68011b | |
parent | 40402bf743f2a0e462091a16f676ac1c5bb497e2 (diff) |
Kill usless #ifdefmania.
-rw-r--r-- | arch/mips/mm/loadmmu.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/arch/mips/mm/loadmmu.c b/arch/mips/mm/loadmmu.c index 121cba406..9ccb8c779 100644 --- a/arch/mips/mm/loadmmu.c +++ b/arch/mips/mm/loadmmu.c @@ -34,25 +34,12 @@ void (*_dma_cache_wback_inv)(unsigned long start, unsigned long size); void (*_dma_cache_wback)(unsigned long start, unsigned long size); void (*_dma_cache_inv)(unsigned long start, unsigned long size); -#ifdef CONFIG_CPU_R3000 extern void ld_mmu_r2300(void); -#endif -#if defined(CONFIG_CPU_R4X00) || defined(CONFIG_CPU_R4300) || \ - defined(CONFIG_CPU_R5000) || defined(CONFIG_CPU_NEVADA) extern void ld_mmu_r4xx0(void); -#endif -#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_rm7k(void); extern void ld_mmu_tfp(void); -#endif -#ifdef CONFIG_CPU_R10000 extern void ld_mmu_andes(void); -#endif void __init loadmmu(void) { |