diff options
Diffstat (limited to 'sys/arch/hp300/include')
-rw-r--r-- | sys/arch/hp300/include/cpu.h | 20 | ||||
-rw-r--r-- | sys/arch/hp300/include/pmap.h | 4 |
2 files changed, 12 insertions, 12 deletions
diff --git a/sys/arch/hp300/include/cpu.h b/sys/arch/hp300/include/cpu.h index 192ea7d9145..b3193f5bc80 100644 --- a/sys/arch/hp300/include/cpu.h +++ b/sys/arch/hp300/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.10 2001/05/04 22:49:00 aaron Exp $ */ +/* $OpenBSD: cpu.h,v 1.11 2001/05/11 23:24:57 millert Exp $ */ /* $NetBSD: cpu.h,v 1.28 1998/02/13 07:41:51 scottr Exp $ */ /* @@ -150,17 +150,17 @@ void ICIA __P((void)); void ICPA __P((void)); void PCIA __P((void)); void TBIA __P((void)); -void TBIS __P((vm_offset_t)); +void TBIS __P((vaddr_t)); void TBIAS __P((void)); void TBIAU __P((void)); #if defined(M68040) void DCFA __P((void)); -void DCFP __P((vm_offset_t)); -void DCFL __P((vm_offset_t)); -void DCPL __P((vm_offset_t)); -void DCPP __P((vm_offset_t)); -void ICPL __P((vm_offset_t)); -void ICPP __P((vm_offset_t)); +void DCFP __P((paddr_t)); +void DCFL __P((paddr_t)); +void DCPL __P((paddr_t)); +void DCPP __P((paddr_t)); +void ICPL __P((paddr_t)); +void ICPP __P((paddr_t)); #endif int suline __P((caddr_t, caddr_t)); void savectx __P((struct pcb *)); @@ -183,10 +183,10 @@ void regdump __P((struct frame *, int)); void dumpconf __P((void)); /* pmap.c functions */ -vm_offset_t pmap_map __P((vm_offset_t, vm_offset_t, vm_offset_t, int)); +vaddr_t pmap_map __P((vaddr_t, paddr_t, paddr_t, int)); /* sys_machdep.c functions */ -int cachectl __P((int, caddr_t, int)); +int cachectl __P((int, vaddr_t, int)); /* vm_machdep.c functions */ void physaccess __P((caddr_t, caddr_t, int, int)); diff --git a/sys/arch/hp300/include/pmap.h b/sys/arch/hp300/include/pmap.h index d3583e6ec37..5624603979d 100644 --- a/sys/arch/hp300/include/pmap.h +++ b/sys/arch/hp300/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.6 2001/05/04 22:49:00 aaron Exp $ */ +/* $OpenBSD: pmap.h,v 1.7 2001/05/11 23:24:57 millert Exp $ */ /* $NetBSD: pmap.h,v 1.13 1997/06/10 18:58:19 veego Exp $ */ /* @@ -107,7 +107,7 @@ typedef struct pmap *pmap_t; struct pv_entry { struct pv_entry *pv_next; /* next pv_entry */ struct pmap *pv_pmap; /* pmap where mapping lies */ - vm_offset_t pv_va; /* virtual address for mapping */ + vaddr_t pv_va; /* virtual address for mapping */ st_entry_t *pv_ptste; /* non-zero if VA maps a PT page */ struct pmap *pv_ptpmap; /* if pv_ptste, pmap for PT page */ int pv_flags; /* flags */ |