summaryrefslogtreecommitdiff
path: root/sys/arch/sparc64/dev
diff options
context:
space:
mode:
authorMark Kettenis <kettenis@cvs.openbsd.org>2008-02-17 22:01:28 +0000
committerMark Kettenis <kettenis@cvs.openbsd.org>2008-02-17 22:01:28 +0000
commit4d024cf2a922c19ca97c23fe6a4bba6b5ecffe33 (patch)
treefb9ba369dd0ed223befee5c7dbf1d8ea7b828f7a /sys/arch/sparc64/dev
parent9e0d57dff9696061f7a4219ac8e5f62c7273cf65 (diff)
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.
Diffstat (limited to 'sys/arch/sparc64/dev')
-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);
}