diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-05-22 01:42:50 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2005-05-22 01:42:50 +0000 |
commit | 5400444cafb285f85d4db410a9d9fe500c31dfbe (patch) | |
tree | 76cc4f1bd80275feb76448b408311daba606ef9b /sys/arch/hppa64 | |
parent | 54b769663376f683bf53219c264af1a274591a5e (diff) |
fix dmesg print
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r-- | sys/arch/hppa64/dev/apic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa64/dev/apic.c b/sys/arch/hppa64/dev/apic.c index d4a94787853..d3904c48b24 100644 --- a/sys/arch/hppa64/dev/apic.c +++ b/sys/arch/hppa64/dev/apic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apic.c,v 1.1 2005/04/01 10:40:47 mickey Exp $ */ +/* $OpenBSD: apic.c,v 1.2 2005/05/22 01:42:49 mickey Exp $ */ /* * Copyright (c) 2005 Michael Shalayeff @@ -53,7 +53,7 @@ apic_attach(struct elroy_softc *sc) data = apic_read(r, APIC_VERSION); sc->sc_nints = (data & APIC_VERSION_NENT) >> APIC_VERSION_NENT_SHIFT; - printf("APIC ver 0x%x %d ents\n", + printf(" APIC ver %x, %d pins", data & APIC_VERSION_MASK, sc->sc_nints); } |