diff options
author | Dave Voutila <dv@cvs.openbsd.org> | 2022-06-01 17:16:01 +0000 |
---|---|---|
committer | Dave Voutila <dv@cvs.openbsd.org> | 2022-06-01 17:16:01 +0000 |
commit | 27ae74b530627ab0d85af7c174ee741a2fde750e (patch) | |
tree | 873ec8f06af04c398a62d834be3bab0a3e29a776 /sys | |
parent | ac7f0e60a560303ecbf3018cea22879090780e6e (diff) |
remove unused pmap_convert prototype from i386
Leftover lint from early days of vmm(4).
ok mlarkin@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/include/pmap.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/i386/include/pmap.h b/sys/arch/i386/include/pmap.h index 53e68dc2e28..c79a2849223 100644 --- a/sys/arch/i386/include/pmap.h +++ b/sys/arch/i386/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.89 2021/03/11 11:16:57 jsg Exp $ */ +/* $OpenBSD: pmap.h,v 1.90 2022/06/01 17:16:00 dv Exp $ */ /* $NetBSD: pmap.h,v 1.44 2000/04/24 17:18:18 thorpej Exp $ */ /* @@ -259,7 +259,6 @@ void pmap_switch(struct proc *, struct proc *); vaddr_t reserve_dumppages(vaddr_t); /* XXX: not a pmap fn */ paddr_t vtophys(vaddr_t va); paddr_t vtophys_pae(vaddr_t va); -int pmap_convert(struct pmap *, int); extern u_int32_t (*pmap_pte_set_p)(vaddr_t, paddr_t, u_int32_t); extern u_int32_t (*pmap_pte_setbits_p)(vaddr_t, u_int32_t, u_int32_t); |