summaryrefslogtreecommitdiff
path: root/sys/arch/m88k/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-09-15 21:07:06 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-09-15 21:07:06 +0000
commitb2910516abe27ac21394fe05cfbe8d5b208565be (patch)
tree700e10e3a84a2eb92033e56383a12fb6032bfd91 /sys/arch/m88k/include
parentfab41b260ab8d55dae9aad19b9fb32654712b33b (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.h3
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