Module Name:    src
Committed By:   jakllsch
Date:           Fri Jun 28 14:31:49 UTC 2013

Modified Files:
        src/sys/arch/x86/x86: ioapic.c

Log Message:
Print the ioapic version using unambiguous base.

>From Felix Deichmann.


To generate a diff of this commit:
cvs rdiff -u -r1.47 -r1.48 src/sys/arch/x86/x86/ioapic.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x86/x86/ioapic.c
diff -u src/sys/arch/x86/x86/ioapic.c:1.47 src/sys/arch/x86/x86/ioapic.c:1.48
--- src/sys/arch/x86/x86/ioapic.c:1.47	Mon Jan 30 17:45:37 2012
+++ src/sys/arch/x86/x86/ioapic.c	Fri Jun 28 14:31:49 2013
@@ -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 @@ ioapic_attach(device_t parent, device_t 
 		    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");
 

Reply via email to