diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-07-01 20:05:12 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2006-07-01 20:05:12 +0000 |
commit | 4edf6156be16f3facacc7b9fa7076a650edfb27e (patch) | |
tree | bc4338259e2bd6f0e0524c14f79333f56636a87a /sys/arch | |
parent | 38a47693198e366d96f1d246c6c0c2b2e0413d51 (diff) |
Cleanup dmesg printing.
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sparc64/sparc64/clock.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/arch/sparc64/sparc64/clock.c b/sys/arch/sparc64/sparc64/clock.c index 655cac1827a..e4d6f1fb49a 100644 --- a/sys/arch/sparc64/sparc64/clock.c +++ b/sys/arch/sparc64/sparc64/clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clock.c,v 1.25 2006/06/21 22:28:56 miod Exp $ */ +/* $OpenBSD: clock.c,v 1.26 2006/07/01 20:05:11 kettenis Exp $ */ /* $NetBSD: clock.c,v 1.41 2001/07/24 19:29:25 eeh Exp $ */ /* @@ -610,11 +610,8 @@ timerattach(parent, self, aux) strlcpy(level14.ih_name, "prof", sizeof(level14.ih_name)); intr_establish(14, &level14); - printf(" irq vectors %lx and %lx", - (u_long)level10.ih_number, - (u_long)level14.ih_number); - - printf("\n"); + printf(" ivec 0x%x, 0x%x\n", INTVEC(level10.ih_number), + INTVEC(level14.ih_number)); } void |