summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGordon Willem Klok <gwk@cvs.openbsd.org>2007-01-18 18:32:11 +0000
committerGordon Willem Klok <gwk@cvs.openbsd.org>2007-01-18 18:32:11 +0000
commit04fa65154ecc4ef1e1022dd4638b9a9f46f355c5 (patch)
treee74e9bb6d462ddd3d30c7dfdd2db3dc760f87f4a
parentfd195763a509f35d44781e1d3a886e7d7b548b3d (diff)
No longer print the 'bios id' field in the dmesg, its of dubious diagnostic
value and changes with acpi versus non acpi kernels. ok deraadt@ tom@
-rw-r--r--sys/arch/i386/i386/bios.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/i386/bios.c b/sys/arch/i386/i386/bios.c
index 0dc0b84bb64..d607a4feb4b 100644
--- a/sys/arch/i386/i386/bios.c
+++ b/sys/arch/i386/i386/bios.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: bios.c,v 1.67 2006/08/22 19:15:36 tom Exp $ */
+/* $OpenBSD: bios.c,v 1.68 2007/01/18 18:32:10 gwk Exp $ */
/*
* Copyright (c) 1997-2001 Michael Shalayeff
@@ -160,8 +160,8 @@ biosattach(struct device *parent, struct device *self, void *aux)
case 0xf9: str = "PC Convertible";break;
case 0xf8: str = "PS/2 386+"; break;
}
- printf(": %s(%02x) BIOS, date %c%c/%c%c/%c%c",
- str, va[15], va[5], va[6], va[8], va[9], va[11], va[12]);
+ printf(": %s BIOS, date %c%c/%c%c/%c%c",
+ str, va[5], va[6], va[8], va[9], va[11], va[12]);
/* see if we have BIOS32 extensions */
if (!(flags & BIOSF_BIOS32)) {