diff options
-rw-r--r-- | sys/arch/powerpc/include/pmap.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/pmap.h b/sys/arch/powerpc/include/pmap.h index 1433597a71b..eafa469005b 100644 --- a/sys/arch/powerpc/include/pmap.h +++ b/sys/arch/powerpc/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.33 2004/01/03 00:57:06 pvalchev Exp $ */ +/* $OpenBSD: pmap.h,v 1.34 2004/01/15 05:53:13 drahn Exp $ */ /* $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */ /*- @@ -71,7 +71,9 @@ typedef u_int sr_t; #define VP_IDX2_MASK (VP_IDX2_SIZE-1) #define VP_IDX2_POS 12 -void pmap_kenter_cache( vaddr_t va, paddr_t pa, vm_prot_t prot, int cacheable); +/* functions used by the bus layer for device accesses */ +void pmap_kenter_cache(vaddr_t va, paddr_t pa, vm_prot_t prot, int cacheable); +void pmap_kremove_pg(vaddr_t va); /* cache flags */ #define PMAP_CACHE_DEFAULT 0 /* WB cache managed mem, devices not */ |