diff options
author | Gordon Willem Klok <gwk@cvs.openbsd.org> | 2006-10-03 22:39:41 +0000 |
---|---|---|
committer | Gordon Willem Klok <gwk@cvs.openbsd.org> | 2006-10-03 22:39:41 +0000 |
commit | dd3df4ee9d259a4f9f44c354773ecb190c26317a (patch) | |
tree | 15de9a51a67ea8fed44782c588321690f206a0d5 | |
parent | 9b3a0091f3eeff9ed57c896c08a8d7c24d2f57c1 (diff) |
Cease printing mpbios vendor/version strings on AMD64 as well.
-rw-r--r-- | sys/arch/amd64/amd64/mpbios.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/arch/amd64/amd64/mpbios.c b/sys/arch/amd64/amd64/mpbios.c index ac29fb4c45e..29145529ddc 100644 --- a/sys/arch/amd64/amd64/mpbios.c +++ b/sys/arch/amd64/amd64/mpbios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mpbios.c,v 1.6 2006/05/29 20:40:55 miod Exp $ */ +/* $OpenBSD: mpbios.c,v 1.7 2006/10/03 22:39:40 gwk Exp $ */ /* $NetBSD: mpbios.c,v 1.7 2003/05/15 16:32:50 fvdl Exp $ */ /*- @@ -500,13 +500,13 @@ mpbios_scan(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); } /* @@ -556,9 +556,6 @@ mpbios_scan(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 */ |