Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/x86/x86 Print the ioapic version using unambiguous ...



details:   https://anonhg.NetBSD.org/src/rev/d6c8f079f15e
branches:  trunk
changeset: 787684:d6c8f079f15e
user:      jakllsch <jakllsch%NetBSD.org@localhost>
date:      Fri Jun 28 14:31:49 2013 +0000

description:
Print the ioapic version using unambiguous base.

>From Felix Deichmann.

diffstat:

 sys/arch/x86/x86/ioapic.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r bf60dfc4e428 -r d6c8f079f15e sys/arch/x86/x86/ioapic.c
--- a/sys/arch/x86/x86/ioapic.c Fri Jun 28 13:04:06 2013 +0000
+++ b/sys/arch/x86/x86/ioapic.c Fri Jun 28 14:31:49 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ioapic.c,v 1.47 2012/01/30 17:45:37 jakllsch Exp $     */
+/*     $NetBSD: ioapic.c,v 1.48 2013/06/28 14:31:49 jakllsch Exp $     */
 
 /*-
  * Copyright (c) 2000, 2009 The NetBSD Foundation, Inc.
@@ -64,7 +64,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ioapic.c,v 1.47 2012/01/30 17:45:37 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ioapic.c,v 1.48 2013/06/28 14:31:49 jakllsch Exp $");
 
 #include "opt_ddb.h"
 
@@ -335,7 +335,7 @@
                    aaa->flags & IOAPIC_PICMODE ? "PIC" : "virtual wire");
        }
        
-       aprint_verbose(", version %x, %d pins", sc->sc_apic_vers,
+       aprint_verbose(", version 0x%x, %d pins", sc->sc_apic_vers,
            sc->sc_apic_sz);
        aprint_normal("\n");
 



Home | Main Index | Thread Index | Old Index