summaryrefslogtreecommitdiff
path: root/sys/arch/m68k/include/cacheops_30.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-05-15 01:43:17 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-05-15 01:43:17 +0000
commit692e1db435d021addc8dbe1ec68bf039fdee8f77 (patch)
tree76b8e9d7b96d34aaf27d20f8bb2d9fae11cb471c /sys/arch/m68k/include/cacheops_30.h
parent82327bad9dadb4fc1b97c445f5a5d6046551bde0 (diff)
Replace vm_offset_t with vaddr_t and paddr_t as appropriate.
NetBSD used as a guide.
Diffstat (limited to 'sys/arch/m68k/include/cacheops_30.h')
-rw-r--r--sys/arch/m68k/include/cacheops_30.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/m68k/include/cacheops_30.h b/sys/arch/m68k/include/cacheops_30.h
index f03af6255f3..ae43b1af09c 100644
--- a/sys/arch/m68k/include/cacheops_30.h
+++ b/sys/arch/m68k/include/cacheops_30.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: cacheops_30.h,v 1.2 2001/01/15 19:50:37 deraadt Exp $ */
+/* $OpenBSD: cacheops_30.h,v 1.3 2001/05/15 01:43:14 millert Exp $ */
/* $NetBSD: cacheops_30.h,v 1.1 1997/06/02 20:26:40 leo Exp $ */
/*-
@@ -53,10 +53,10 @@ TBIA_30()
/*
* Invalidate any TLB entry for given VA (TB Invalidate Single)
*/
-void TBIS_30 __P((vm_offset_t));
+void TBIS_30 __P((vaddr_t));
extern __inline__ void
TBIS_30(va)
- vm_offset_t va;
+ vaddr_t va;
{
__asm __volatile (" pflush #0,#0,%0@;"
" movc %1,cacr" : : "a" (va), "d" (DC_CLEAR));