diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-01 22:24:53 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-12-01 22:24:53 +0000 |
commit | e1479e938b762ba4b093f11b37ce4a928e82406d (patch) | |
tree | c59385c6962388affe1d5d8e3864aa1329c24945 /sys/arch/m88k/include/mmu.h | |
parent | 964ae37351bb4b966106359d3434ce972d3a75ee (diff) |
Get rid of PMAP_NULL and xx_ENTRY_NULL and simply use NULL when necessary.
Diffstat (limited to 'sys/arch/m88k/include/mmu.h')
-rw-r--r-- | sys/arch/m88k/include/mmu.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/m88k/include/mmu.h b/sys/arch/m88k/include/mmu.h index e44180047da..6984c374327 100644 --- a/sys/arch/m88k/include/mmu.h +++ b/sys/arch/m88k/include/mmu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mmu.h,v 1.4 2005/09/15 21:07:04 miod Exp $ */ +/* $OpenBSD: mmu.h,v 1.5 2005/12/01 22:24:49 miod Exp $ */ /* * This file bears almost no resemblance to the original m68k file, @@ -102,8 +102,6 @@ typedef u_int32_t sdt_entry_t; -#define SDT_ENTRY_NULL ((sdt_entry_t *) 0) - #define SG_V 0x00000001 #define SG_NV 0x00000000 #define SG_PROT 0x00000004 @@ -121,8 +119,6 @@ typedef u_int32_t sdt_entry_t; typedef u_int32_t pt_entry_t; -#define PT_ENTRY_NULL ((pt_entry_t *) 0) - #define PG_V 0x00000001 #define PG_NV 0x00000000 #define PG_PROT 0x00000004 |