diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-09-26 22:27:27 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-09-26 22:27:27 +0000 |
commit | d3f25f1811396611cea824838cc490b863fc88d6 (patch) | |
tree | 76d2e0c993000308f00bd9895a7bcb728765a463 /sys/arch/mvme88k/include/pmap.h | |
parent | 17738dcbee8bacfd8a68cd4375820c4947ff55d6 (diff) |
Death to the bitfields, this time cmmu_apr_t and batc_entry_t. In the
process, remove duplicate batc defines.
Diffstat (limited to 'sys/arch/mvme88k/include/pmap.h')
-rw-r--r-- | sys/arch/mvme88k/include/pmap.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/mvme88k/include/pmap.h b/sys/arch/mvme88k/include/pmap.h index 116c14c1c91..83aa964865e 100644 --- a/sys/arch/mvme88k/include/pmap.h +++ b/sys/arch/mvme88k/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.29 2003/01/24 09:57:41 miod Exp $ */ +/* $OpenBSD: pmap.h,v 1.30 2003/09/26 22:27:25 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1991 Carnegie Mellon University @@ -15,8 +15,8 @@ #ifndef _MACHINE_PMAP_H_ #define _MACHINE_PMAP_H_ -#include <machine/mmu.h> /* batc_template_t, BATC_MAX, etc.*/ -#include <machine/pcb.h> /* pcb_t, etc.*/ +#include <machine/mmu.h> +#include <machine/pcb.h> /* * PMAP structure @@ -34,8 +34,8 @@ struct pmap { u_int32_t pm_cpus; #ifdef PMAP_USE_BATC - batc_template_t pm_ibatc[BATC_MAX]; /* instruction BATCs */ - batc_template_t pm_dbatc[BATC_MAX]; /* data BATCs */ + u_int32_t pm_ibatc[BATC_MAX]; /* instruction BATCs */ + u_int32_t pm_dbatc[BATC_MAX]; /* data BATCs */ #endif }; |