diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-28 14:13:08 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-28 14:13:08 +0000 |
commit | b3a75296ffff7c75a11696f1dc07ddf8fe8ad4ca (patch) | |
tree | 2f908f8a056546659289876783d9141bb1eaec1a /sys/arch/hp300 | |
parent | f17e9fc7db84dac3f5a03fc347ebf3dfb46c1bcc (diff) |
pmap_kenter_pgs is not used and not really useful. remove.
Diffstat (limited to 'sys/arch/hp300')
-rw-r--r-- | sys/arch/hp300/hp300/pmap.c | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/sys/arch/hp300/hp300/pmap.c b/sys/arch/hp300/hp300/pmap.c index 77f75eecac4..afda3f82a79 100644 --- a/sys/arch/hp300/hp300/pmap.c +++ b/sys/arch/hp300/hp300/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.33 2001/11/28 13:47:38 art Exp $ */ +/* $OpenBSD: pmap.c,v 1.34 2001/11/28 14:13:06 art Exp $ */ /* $NetBSD: pmap.c,v 1.80 1999/09/16 14:52:06 chs Exp $ */ /*- @@ -1457,19 +1457,6 @@ pmap_kenter_pa(va, pa, prot) } void -pmap_kenter_pgs(va, pgs, npgs) - vaddr_t va; - struct vm_page **pgs; - int npgs; -{ - int i; - - for (i = 0; i < npgs; i++, va += PAGE_SIZE) - pmap_kenter_pa(va, VM_PAGE_TO_PHYS(pgs[i]), - VM_PROT_READ|VM_PROT_WRITE); -} - -void pmap_kremove(va, len) vaddr_t va; vsize_t len; |