remove some vm_offset_t fallout.

This commit is contained in:
matthias 1998-10-03 20:04:01 +00:00
parent e00e31dcab
commit 78f9c9bd25
2 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: md.h,v 1.4 1997/07/09 19:32:51 matthias Exp $ */ /* $NetBSD: md.h,v 1.5 1998/10/03 20:04:01 matthias Exp $ */
/* /*
* - ns32k dependent definitions * - ns32k dependent definitions
@ -57,9 +57,9 @@ _cachectl(addr, bytes)
void *addr; void *addr;
unsigned int bytes; unsigned int bytes;
{ {
vm_offset_t start; vaddr_t start;
for(start = (vm_offset_t) addr & 0xfffffff0; for(start = (vaddr_t) addr & 0xfffffff0;
start < (vm_offset_t) addr + bytes; start += 0x10) start < (vaddr_t) addr + bytes; start += 0x10)
cinv(start); cinv(start);
} }

View File

@ -1,4 +1,4 @@
/* $NetBSD: md.h,v 1.4 1997/07/09 19:32:51 matthias Exp $ */ /* $NetBSD: md.h,v 1.5 1998/10/03 20:04:01 matthias Exp $ */
/* /*
* - ns32k dependent definitions * - ns32k dependent definitions
@ -57,9 +57,9 @@ _cachectl(addr, bytes)
void *addr; void *addr;
unsigned int bytes; unsigned int bytes;
{ {
vm_offset_t start; vaddr_t start;
for(start = (vm_offset_t) addr & 0xfffffff0; for(start = (vaddr_t) addr & 0xfffffff0;
start < (vm_offset_t) addr + bytes; start += 0x10) start < (vaddr_t) addr + bytes; start += 0x10)
cinv(start); cinv(start);
} }