diff options
author | 2008-02-17 22:01:27 +0000 | |
---|---|---|
committer | 2008-02-17 22:01:27 +0000 | |
commit | 5c2ad8d340b2cc6ed277a35f1b170c392d541e8c (patch) | |
tree | 4b6b922a8ab29ee67202ab386c13c085d0264c9b | |
parent | mention the VIA VT8237S south bridge. (diff) | |
download | wireguard-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.c | 4 |
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); } |