summaryrefslogtreecommitdiff
path: root/sys/arch/m88k/include
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2011-01-05 22:20:23 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2011-01-05 22:20:23 +0000
commit0366f9ef3969200de0b1cf0264b860fdac62b384 (patch)
tree5560083bb41caa7146aec7c5e48b7873b33bdcf2 /sys/arch/m88k/include
parent6481ccefe1fb3cbca0a95beb18a4fee6d2b82ffc (diff)
Pass pmap_bootstrap() the memory range used by the PROM/BUG/firmware/whatever,
instead of assuming it is ``everything below the kernel image''.
Diffstat (limited to 'sys/arch/m88k/include')
-rw-r--r--sys/arch/m88k/include/pmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/m88k/include/pmap.h b/sys/arch/m88k/include/pmap.h
index 8bbfb0914f8..5f94e37bf9a 100644
--- a/sys/arch/m88k/include/pmap.h
+++ b/sys/arch/m88k/include/pmap.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.h,v 1.18 2010/12/31 21:38:08 miod Exp $ */
+/* $OpenBSD: pmap.h,v 1.19 2011/01/05 22:20:22 miod Exp $ */
/*
* Mach Operating System
* Copyright (c) 1991 Carnegie Mellon University
@@ -59,7 +59,7 @@ extern apr_t default_apr;
#define pmap_clear_modify(pg) pmap_unsetbit(pg, PG_M)
#define pmap_clear_reference(pg) pmap_unsetbit(pg, PG_U)
-void pmap_bootstrap(void);
+void pmap_bootstrap(paddr_t, paddr_t);
void pmap_bootstrap_cpu(cpuid_t);
void pmap_cache_ctrl(vaddr_t, vaddr_t, u_int);
#define pmap_unuse_final(p) /* nothing */