From e7d8e5164a43ca13e2aa6d151fbd844f39e3bb4e Mon Sep 17 00:00:00 2001 From: soren Date: Thu, 22 Jun 2000 05:00:48 +0000 Subject: [PATCH] Remove extraneous mips1_TBRPL() prototype. --- sys/arch/mips/mips/pmap.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/sys/arch/mips/mips/pmap.c b/sys/arch/mips/mips/pmap.c index 3270403a4b6a..6bf15a393978 100644 --- a/sys/arch/mips/mips/pmap.c +++ b/sys/arch/mips/mips/pmap.c @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.c,v 1.99 2000/06/09 05:51:46 soda Exp $ */ +/* $NetBSD: pmap.c,v 1.100 2000/06/22 05:00:48 soren Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -78,7 +78,7 @@ #include -__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.99 2000/06/09 05:51:46 soda Exp $"); +__KERNEL_RCSID(0, "$NetBSD: pmap.c,v 1.100 2000/06/22 05:00:48 soren Exp $"); /* * Manages physical address maps. @@ -905,11 +905,8 @@ pmap_protect(pmap, sva, eva, prot) entry |= p; pte->pt_entry = entry; #if defined(MIPS1) && !defined(MIPS3) - { - extern void mips1_TBRPL(vaddr_t, vaddr_t, paddr_t); - /* replace PTE iff sva is found in TLB */ + /* replace PTE if sva is found in TLB */ mips1_TBRPL(sva, sva, entry); - } #else MachTLBUpdate(sva, entry); #endif