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.
This commit is contained in:
alc 2009-05-23 18:44:26 +00:00
parent cd8caa9b9c
commit 8c94c1ba92

View File

@ -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;