summaryrefslogtreecommitdiffstats
path: root/arch/mips/mm
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2001-02-05 21:57:09 +0000
committerRalf Baechle <ralf@linux-mips.org>2001-02-05 21:57:09 +0000
commitd300c180284e2aad8e60af142394775bca003698 (patch)
tree9c22065c0d79d664a03a359d6a292c594cc42cde /arch/mips/mm
parente876fa61d757c924e0f8467767505ee8da129ece (diff)
Add missing initialization for ___flush_cache_all. From Alice
Hennessy.
Diffstat (limited to 'arch/mips/mm')
-rw-r--r--arch/mips/mm/mips32.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/mips/mm/mips32.c b/arch/mips/mm/mips32.c
index 32f7e132b..332418560 100644
--- a/arch/mips/mm/mips32.c
+++ b/arch/mips/mm/mips32.c
@@ -1,6 +1,4 @@
/*
- * mips32.c
- *
* Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
* Copyright (C) 2000 MIPS Technologies, Inc. All rights reserved.
*
@@ -964,6 +962,7 @@ static void __init setup_noscache_funcs(void)
_clear_page = (void *)mips32_clear_page_dc;
_copy_page = (void *)mips32_copy_page_dc;
_flush_cache_all = mips32_flush_cache_all_pc;
+ ___flush_cache_all = mips32_flush_cache_all_pc;
_flush_cache_mm = mips32_flush_cache_mm_pc;
_flush_cache_range = mips32_flush_cache_range_pc;
_flush_cache_page = mips32_flush_cache_page_pc;