summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2001-12-05 00:11:52 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2001-12-05 00:11:52 +0000
commitfa0689f92d18b7b6403a25d4ccf5fe1e898bc4ac (patch)
treed9d87302c6b7f689a0bd490fcdd25ad85ed29c1b /sys/arch/mvme88k
parent2d6ebc6b1044ef771b2b25c09c2abffe0c0a0d3d (diff)
Update pmap_update macro for arches Art missed. Still just a noop.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r--sys/arch/mvme88k/include/pmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/include/pmap.h b/sys/arch/mvme88k/include/pmap.h
index 4c156a1a76c..c00c7ed1258 100644
--- a/sys/arch/mvme88k/include/pmap.h
+++ b/sys/arch/mvme88k/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.19 2001/11/28 16:13:28 art Exp $ */
+/* $OpenBSD: pmap.h,v 1.20 2001/12/05 00:11:51 millert Exp $ */
/*
* Mach Operating System
* Copyright (c) 1991 Carnegie Mellon University
@@ -75,7 +75,7 @@ extern caddr_t vmmap;
/* Used in builtin/device_pager.c */
#define pmap_phys_address(frame) ((vm_offset_t) (ptoa(frame)))
-#define pmap_update() /* nothing */
+#define pmap_update(pmap) /* nothing (yet) */
#define PMAP_ACTIVATE(proc) pmap_activate(proc)
#define PMAP_DEACTIVATE(proc) pmap_deactivate(proc)