Move physaccess/physunaccess prototypes.

This commit is contained in:
briggs 1997-03-15 05:39:45 +00:00
parent 54bec78722
commit 3d16e320d6
2 changed files with 6 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: cpu.h,v 1.45 1997/02/10 22:13:40 scottr Exp $ */
/* $NetBSD: cpu.h,v 1.46 1997/03/15 05:39:47 briggs Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -329,6 +329,10 @@ void proc_trampoline __P((void));
/* trap.c */
void child_return __P((struct proc *, struct frame));
/* vm_machdep.c */
void physaccess __P((caddr_t, caddr_t, register int, register int));
void physunaccess __P((caddr_t, register int));
__END_DECLS
#endif /* _CPU_MACHINE_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: vm_machdep.c,v 1.21 1996/09/16 18:00:31 scottr Exp $ */
/* $NetBSD: vm_machdep.c,v 1.22 1997/03/15 05:39:45 briggs Exp $ */
/*
* Copyright (c) 1988 University of Utah.
@ -261,9 +261,6 @@ pagemove(from, to, size)
}
}
void physaccess __P((caddr_t, caddr_t, register int, register int));
void TBIAS __P((void));
/*
* Map `size' bytes of physical memory starting at `paddr' into
* kernel VA space at `vaddr'. Read/write and cache-inhibit status
@ -286,8 +283,6 @@ physaccess(vaddr, paddr, size, prot)
TBIAS();
}
void physunaccess __P((caddr_t, register int));
void
physunaccess(vaddr, size)
caddr_t vaddr;