diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-08-07 18:57:45 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-08-07 18:57:45 +0000 |
commit | abe08bb2f9ddae81d0f69eca674e988949de35dc (patch) | |
tree | 11a96be5e27a289c813768c245ef231bde512050 /sys/arch/m68k/include | |
parent | 51d6610896bc80324dfced09ab7a21a8f00e4b8b (diff) |
Need pmap_unuse_final() too; Martin Reindl.
Diffstat (limited to 'sys/arch/m68k/include')
-rw-r--r-- | sys/arch/m68k/include/pmap_motorola.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/pmap_motorola.h b/sys/arch/m68k/include/pmap_motorola.h index b6b5c1d7ce7..3b8fad67463 100644 --- a/sys/arch/m68k/include/pmap_motorola.h +++ b/sys/arch/m68k/include/pmap_motorola.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap_motorola.h,v 1.11 2004/05/20 09:20:42 kettenis Exp $ */ +/* $OpenBSD: pmap_motorola.h,v 1.12 2004/08/07 18:57:44 miod Exp $ */ /* * Copyright (c) 1987 Carnegie-Mellon University @@ -128,6 +128,7 @@ extern struct pv_entry *pv_table; /* array of entries, one per page */ #define pmap_copy(dp,sp,d,l,s) do { /* nothing */ } while (0) #define pmap_update(pmap) do { /* nothing (yet) */ } while (0) +#define pmap_unuse_final(p) do { /* nothing */ } while (0) extern pt_entry_t *Sysmap; extern char *vmmap; /* map for mem, dumps, etc. */ |