summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorGordon Willem Klok <gwk@cvs.openbsd.org>2006-05-09 00:35:30 +0000
committerGordon Willem Klok <gwk@cvs.openbsd.org>2006-05-09 00:35:30 +0000
commit1c1c11e4ab159a805f2e116c9db7ba237e8a832e (patch)
tree4028a2fbfec367807f08710958ee454de033d1e3 /sys/arch
parentafec524ea29a416be82ee8cb686e79b4fa34c21e (diff)
Remove some debug printf's that snuck in.
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/i386/i386/bios.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/i386/i386/bios.c b/sys/arch/i386/i386/bios.c
index 229ed2d9f81..17c76e70aa2 100644
--- a/sys/arch/i386/i386/bios.c
+++ b/sys/arch/i386/i386/bios.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bios.c,v 1.60 2006/05/08 22:53:10 deraadt Exp $ */
+/* $OpenBSD: bios.c,v 1.61 2006/05/09 00:35:29 gwk Exp $ */
/*
* Copyright (c) 1997-2001 Michael Shalayeff
@@ -660,7 +660,6 @@ smbios_find_table(u_int8_t type, struct smbtable *st)
for (; va + sizeof(struct smbtblhdr) < end && tcount <=
smbios_entry.count; tcount++) {
hdr = (struct smbtblhdr *) va;
- printf("SMBIOS (%d)@%p type: %d", tcount, va, hdr->type);
if (hdr->type == type) {
ret = 1;
st->hdr = hdr;
@@ -671,12 +670,10 @@ smbios_find_table(u_int8_t type, struct smbtable *st)
if (hdr->type == SMBIOS_TYPE_EOT)
break;
va+= hdr->size;
- printf(" size: %d strings@%p", hdr->size, va);
for (; va + 1 < end; va++)
if (*va == NULL && *(va + 1) == NULL)
break;
va+=2;
- printf(" end@%p\n", va);
}
printf("\n");