Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/i386/mca print the model numbers slighly different way



details:   https://anonhg.NetBSD.org/src/rev/7cd25d505b66
branches:  trunk
changeset: 509435:7cd25d505b66
user:      jdolecek <jdolecek%NetBSD.org@localhost>
date:      Fri May 04 07:22:07 2001 +0000

description:
print the model numbers slighly different way

diffstat:

 sys/arch/i386/mca/mca_machdep.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 7a7a4aa54bf3 -r 7cd25d505b66 sys/arch/i386/mca/mca_machdep.c
--- a/sys/arch/i386/mca/mca_machdep.c   Fri May 04 07:09:55 2001 +0000
+++ b/sys/arch/i386/mca/mca_machdep.c   Fri May 04 07:22:07 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: mca_machdep.c,v 1.7 2001/05/02 13:18:34 jdolecek Exp $ */
+/*     $NetBSD: mca_machdep.c,v 1.8 2001/05/04 07:22:07 jdolecek Exp $ */
 
 /*-
  * Copyright (c) 2000 The NetBSD Foundation, Inc.
@@ -266,7 +266,7 @@
        scp = (struct bios_config *)ISA_HOLE_VADDR(paddr);
 
 #if 1 /* MCAVERBOSE */
-       printf("BIOS CFG: Model %#x, Submodel %#x, Revision %#x\n",
+       printf("BIOS CFG: Model-Submodel-Revision: %02x-%02x-%02x\n",
                scp->model, scp->submodel, scp->bios_rev);
 
        bitmask_snprintf(scp->feature1,



Home | Main Index | Thread Index | Old Index