diff options
author | Gordon Willem Klok <gwk@cvs.openbsd.org> | 2006-10-03 22:35:02 +0000 |
---|---|---|
committer | Gordon Willem Klok <gwk@cvs.openbsd.org> | 2006-10-03 22:35:02 +0000 |
commit | 9b3a0091f3eeff9ed57c896c08a8d7c24d2f57c1 (patch) | |
tree | 11c0dea337bd0de31c341228e7d5c5ce68acab58 /sys/arch/i386 | |
parent | 6064030fd771966fc0693a1bcf13e25b41b5bbc9 (diff) |
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@
Diffstat (limited to 'sys/arch/i386')
-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 */ |