summaryrefslogtreecommitdiffstats
path: root/arch/mips/mm/tfp.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/mips/mm/tfp.c')
-rw-r--r--arch/mips/mm/tfp.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/arch/mips/mm/tfp.c b/arch/mips/mm/tfp.c
index cdc61f1f6..04db52b98 100644
--- a/arch/mips/mm/tfp.c
+++ b/arch/mips/mm/tfp.c
@@ -1,4 +1,4 @@
-/* $Id: tfp.c,v 1.3 1996/07/29 11:10:08 dm Exp $
+/* $Id: tfp.c,v 1.1.1.1 1997/06/01 03:16:38 ralf Exp $
* tfp.c: MMU and cache routines specific to the r8000 (TFP).
*
* Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
@@ -79,6 +79,12 @@ static void tfp_pgd_init(unsigned long page)
{
}
+static void tfp_add_wired_entry(unsigned long entrylo0, unsigned long entrylo1,
+ unsigned long entryhi, unsigned long pagemask)
+{
+ /* XXX */
+}
+
void ld_mmu_tfp(void)
{
flush_cache_all = tfp_flush_cache_all;
@@ -93,9 +99,11 @@ void ld_mmu_tfp(void)
flush_tlb_range = tfp_flush_tlb_range;
flush_tlb_page = tfp_flush_tlb_page;
+ add_wired_entry = tfp_add_wired_entry;
+
load_pgd = tfp_load_pgd;
pgd_init = tfp_pgd_init;
-
+
flush_cache_all();
flush_tlb_all();
}