diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2005-04-04 23:40:06 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2005-04-04 23:40:06 +0000 |
commit | b78dd01fdc2391b694426282849a967c6fd62908 (patch) | |
tree | 636a77408e8dc0e6c9fa9ac1dfda37b2923f443f /sys/arch/vax | |
parent | c70e3cc8068b66f1baac600ec86bebe42d43acd7 (diff) |
Nuke pmap_bootstrap_alloc(), not used anymore.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/vax/pmap.c | 19 |
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; |