Make the address argument of pcache_flush_page() a `paddr_t'.
This commit is contained in:
parent
05d7f969b9
commit
b5321a5a5c
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cache.h,v 1.21 2000/06/05 20:38:24 pk Exp $ */
|
||||
/* $NetBSD: cache.h,v 1.22 2000/06/06 07:56:40 pk Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996
|
||||
|
@ -193,7 +193,7 @@ extern void sparc_noop __P((void));
|
|||
#define noop_cache_flush \
|
||||
(void (*)__P((caddr_t, u_int))) sparc_noop
|
||||
#define noop_pcache_flush_page \
|
||||
(void (*)__P((int, int))) sparc_noop
|
||||
(void (*)__P((paddr_t, int))) sparc_noop
|
||||
#define noop_pure_vcache_flush \
|
||||
(void (*)__P((void))) sparc_noop
|
||||
#define noop_cache_flush_all \
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: cpuvar.h,v 1.27 2000/06/05 20:38:25 pk Exp $ */
|
||||
/* $NetBSD: cpuvar.h,v 1.28 2000/06/06 07:56:40 pk Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1996 The NetBSD Foundation, Inc.
|
||||
|
@ -78,7 +78,7 @@ struct module_info {
|
|||
void (*sp_vcache_flush_segment)__P((int, int));
|
||||
void (*sp_vcache_flush_region)__P((int));
|
||||
void (*sp_vcache_flush_context)__P((void));
|
||||
void (*pcache_flush_page)__P((int, int));
|
||||
void (*pcache_flush_page)__P((paddr_t, int));
|
||||
void (*pure_vcache_flush)__P((void));
|
||||
void (*cache_flush_all)__P((void));
|
||||
void (*memerr)__P((unsigned, u_int, u_int, struct trapframe *));
|
||||
|
@ -280,7 +280,7 @@ struct cpu_info {
|
|||
void (*vcache_flush_context)__P((void));
|
||||
void (*sp_vcache_flush_context)__P((void));
|
||||
|
||||
void (*pcache_flush_page)__P((int, int));
|
||||
void (*pcache_flush_page)__P((paddr_t, int));
|
||||
void (*pure_vcache_flush)__P((void));
|
||||
void (*cache_flush_all)__P((void));
|
||||
|
||||
|
|
Loading…
Reference in New Issue