diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2007-05-29 02:37:05 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2007-05-29 02:37:05 +0000 |
commit | 5788dfeb47f35e7620e48c3114aa1d2cc31e651c (patch) | |
tree | 6fa8c07d23857b949b0d47674a639ff06b1708c2 /sys/arch | |
parent | 17d8bd4bf87531fc31c4ea301438da0f7355d137 (diff) |
Remove a debugging printf left behind by accident.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/pmap.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/pmap.c b/sys/arch/amd64/amd64/pmap.c index 464f19a6e18..11eeef8d37c 100644 --- a/sys/arch/amd64/amd64/pmap.c +++ b/sys/arch/amd64/amd64/pmap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.c,v 1.25 2007/05/29 02:36:19 art Exp $ */ +/* $OpenBSD: pmap.c,v 1.26 2007/05/29 02:37:04 art Exp $ */ /* $NetBSD: pmap.c,v 1.3 2003/05/08 18:13:13 thorpej Exp $ */ /* @@ -660,8 +660,6 @@ pmap_bootstrap(vaddr_t kva_start, paddr_t max_pa) if (ndmpdp < NDML2_ENTRIES) ndmpdp = NDML2_ENTRIES; /* At least 4GB */ -printf("ndmpdp: %ld\n", ndmpdp); - dmpdp = kpm->pm_pdir[PDIR_SLOT_DIRECT] & PG_FRAME; dmpd = avail_start; avail_start += ndmpdp * PAGE_SIZE; |