summaryrefslogtreecommitdiff
path: root/sys/arch/vax
diff options
context:
space:
mode:
Diffstat (limited to 'sys/arch/vax')
-rw-r--r--sys/arch/vax/vax/pmap.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/sys/arch/vax/vax/pmap.c b/sys/arch/vax/vax/pmap.c
index 5254ec6a724..b0598d4f20e 100644
--- a/sys/arch/vax/vax/pmap.c
+++ b/sys/arch/vax/vax/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.33 2003/11/10 21:05:06 miod Exp $ */
+/* $OpenBSD: pmap.c,v 1.34 2005/04/04 23:40:05 miod Exp $ */
/* $NetBSD: pmap.c,v 1.74 1999/11/13 21:32:25 matt Exp $ */
/*
* Copyright (c) 1994, 1998, 1999 Ludd, University of Lule}, Sweden.
@@ -796,23 +796,6 @@ if (startpmapdebug)
return (0);
}
-void *
-pmap_bootstrap_alloc(size)
- int size;
-{
- void *mem;
-
-#ifdef PMAPDEBUG
-if(startpmapdebug)
- printf("pmap_bootstrap_alloc: size 0x %x\n",size);
-#endif
- size = round_page(size);
- mem = (caddr_t)avail_start + KERNBASE;
- avail_start += size;
- memset(mem, 0, size);
- return (mem);
-}
-
vaddr_t
pmap_map(virtuell, pstart, pend, prot)
vaddr_t virtuell;