summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorPer Fogelstrom <pefo@cvs.openbsd.org>1996-10-07 07:58:13 +0000
committerPer Fogelstrom <pefo@cvs.openbsd.org>1996-10-07 07:58:13 +0000
commit046ed7b19c4d10f545f71badf3c42d11ec82ab63 (patch)
tree2a77a16452e95385ad0af31dddf0191f32eca5ce /sys/arch
parent0de960cd5b53337e7073047f41a8afe0113aface (diff)
Remove debug printout. Not very nice..
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/arc/arc/pmap.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/arc/arc/pmap.c b/sys/arch/arc/arc/pmap.c
index 51e5b715b28..9f9531ca21e 100644
--- a/sys/arch/arc/arc/pmap.c
+++ b/sys/arch/arc/arc/pmap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pmap.c,v 1.5 1996/09/24 19:37:25 pefo Exp $ */
+/* $OpenBSD: pmap.c,v 1.6 1996/10/07 07:58:12 pefo Exp $ */
/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)pmap.c 8.4 (Berkeley) 1/26/94
- * $Id: pmap.c,v 1.5 1996/09/24 19:37:25 pefo Exp $
+ * $Id: pmap.c,v 1.6 1996/10/07 07:58:12 pefo Exp $
*/
/*
@@ -281,7 +281,9 @@ pmap_bootstrap(firstaddr)
pseg->first_page = nextpage;
nextpage += (pseg->end - pseg->start) / NBPG;
avail_remaining += (pseg->end - pseg->start) / NBPG;
+#if 0
/*XXX*/ sprintf(pbuf,"segment = %d start 0x%x end 0x%x avail %d page %d\n", i, pseg->start, pseg->end, avail_remaining, nextpage); bios_putstring(pbuf);
+#endif
pseg++;
}