summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkettenis <kettenis@openbsd.org>2008-02-17 22:01:27 +0000
committerkettenis <kettenis@openbsd.org>2008-02-17 22:01:27 +0000
commit5c2ad8d340b2cc6ed277a35f1b170c392d541e8c (patch)
tree4b6b922a8ab29ee67202ab386c13c085d0264c9b
parentmention the VIA VT8237S south bridge. (diff)
downloadwireguard-openbsd-5c2ad8d340b2cc6ed277a35f1b170c392d541e8c.tar.xz
wireguard-openbsd-5c2ad8d340b2cc6ed277a35f1b170c392d541e8c.zip
We're not printing interrupt priority levels (ot whatever ipl stands for) but
interrupt vectors, so change it to ivec and print them in hex.
-rw-r--r--sys/arch/sparc64/dev/ebus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sparc64/dev/ebus.c b/sys/arch/sparc64/dev/ebus.c
index 3fb1068e57e..00b4af78a0d 100644
--- a/sys/arch/sparc64/dev/ebus.c
+++ b/sys/arch/sparc64/dev/ebus.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ebus.c,v 1.19 2007/10/01 16:11:19 krw Exp $ */
+/* $OpenBSD: ebus.c,v 1.20 2008/02/17 22:01:27 kettenis Exp $ */
/* $NetBSD: ebus.c,v 1.24 2001/07/25 03:49:54 eeh Exp $ */
/*
@@ -284,7 +284,7 @@ ebus_print(void *aux, const char *p)
ea->ea_regs[i].lo,
ea->ea_regs[i].lo + ea->ea_regs[i].size - 1);
for (i = 0; i < ea->ea_nintrs; i++)
- printf(" ipl %d", ea->ea_intrs[i]);
+ printf(" ivec 0x%x", ea->ea_intrs[i]);
return (UNCONF);
}