diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-15 21:07:06 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-09-15 21:07:06 +0000 |
commit | b2910516abe27ac21394fe05cfbe8d5b208565be (patch) | |
tree | 700e10e3a84a2eb92033e56383a12fb6032bfd91 /sys/arch/m88k/include | |
parent | fab41b260ab8d55dae9aad19b9fb32654712b33b (diff) |
Define PG_M_U as PG_M | PG_U, and use it where appropriate; no functional
change today, will become useful in the neat future.
Diffstat (limited to 'sys/arch/m88k/include')
-rw-r--r-- | sys/arch/m88k/include/mmu.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/m88k/include/mmu.h b/sys/arch/m88k/include/mmu.h index 601f84ce81a..e44180047da 100644 --- a/sys/arch/m88k/include/mmu.h +++ b/sys/arch/m88k/include/mmu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mmu.h,v 1.3 2005/04/27 14:07:09 miod Exp $ */ +/* $OpenBSD: mmu.h,v 1.4 2005/09/15 21:07:04 miod Exp $ */ /* * This file bears almost no resemblance to the original m68k file, @@ -128,6 +128,7 @@ typedef u_int32_t pt_entry_t; #define PG_PROT 0x00000004 #define PG_U 0x00000008 #define PG_M 0x00000010 +#define PG_M_U 0x00000018 #define PG_RO 0x00000004 #define PG_RW 0x00000000 #define PG_SO 0x00000100 |