diff options
author | 2006-10-03 22:35:01 +0000 | |
---|---|---|
committer | 2006-10-03 22:35:01 +0000 | |
commit | 4656a624b052f97f1aa7278907522a6511a5d113 (patch) | |
tree | ede0b34c45fa66fe206ed30bd34d62330e3f84b7 | |
parent | MLINKS new acpi stuff. (diff) | |
download | wireguard-openbsd-4656a624b052f97f1aa7278907522a6511a5d113.tar.xz wireguard-openbsd-4656a624b052f97f1aa7278907522a6511a5d113.zip |
Cease printing the mpbios vendor/version strings, smbios provides much
more informative information.
ok in principal deraadt@, krw@, mickey@
this change with newline fixes ok krw@
-rw-r--r-- | sys/arch/i386/i386/mpbios.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/arch/i386/i386/mpbios.c b/sys/arch/i386/i386/mpbios.c index ffabc9d1c3f..6b3b14b7ab6 100644 --- a/sys/arch/i386/i386/mpbios.c +++ b/sys/arch/i386/i386/mpbios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpbios.c,v 1.16 2006/09/19 11:06:33 jsg Exp $ */ +/* $OpenBSD: mpbios.c,v 1.17 2006/10/03 22:35:01 gwk Exp $ */ /* $NetBSD: mpbios.c,v 1.2 2002/10/01 12:56:57 fvdl Exp $ */ /*- @@ -501,13 +501,13 @@ mpbios_scan(struct device *self) switch (mp_fps->spec_rev) { case 1: - printf("(Version 1.1)"); + printf("(Version 1.1)\n"); break; case 4: - printf("(Version 1.4)"); + printf("(Version 1.4)\n"); break; default: - printf("(unrecognized rev %d)", mp_fps->spec_rev); + printf("(unrecognized rev %d)\n", mp_fps->spec_rev); } /* @@ -557,9 +557,6 @@ mpbios_scan(struct device *self) if (mp_cth == NULL) panic("mpbios_scan: no config (can't happen?)"); - printf(" (%8.8s %12.12s)\n", - mp_cth->oem_id, mp_cth->product_id); - /* * Walk the table once, counting items */ |