From 56c4a67ba7c73cfae43a42a1f589129f6381ba15 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sat, 23 May 2009 18:44:26 +0000 Subject: [PATCH] Give pmap_enter()'s third parameter the same name that it has on amd64 and i386. Otherwise, my next to last commit (r192628) to this file doesn't actually compile. --- sys/mips/mips/pmap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/mips/mips/pmap.c b/sys/mips/mips/pmap.c index c3d6060a35e..229e19874d2 100644 --- a/sys/mips/mips/pmap.c +++ b/sys/mips/mips/pmap.c @@ -1729,8 +1729,8 @@ retry: * insert this page into the given map NOW. */ void -pmap_enter(pmap_t pmap, vm_offset_t va, vm_prot_t fault_type, vm_page_t m, vm_prot_t prot, - boolean_t wired) +pmap_enter(pmap_t pmap, vm_offset_t va, vm_prot_t access, vm_page_t m, + vm_prot_t prot, boolean_t wired) { vm_offset_t pa, opa; register pt_entry_t *pte;