diff options
author | 2006-07-01 20:05:11 +0000 | |
---|---|---|
committer | 2006-07-01 20:05:11 +0000 | |
commit | 20eecc27c6a14f494b7f2f0d2a004cb8bc4255df (patch) | |
tree | 9a5da490cd9b86d5b72f7fe7067360914695d0e8 | |
parent | update the 802.11 address as well if the interface mac address has (diff) | |
download | wireguard-openbsd-20eecc27c6a14f494b7f2f0d2a004cb8bc4255df.tar.xz wireguard-openbsd-20eecc27c6a14f494b7f2f0d2a004cb8bc4255df.zip |
Cleanup dmesg printing.
-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 |