diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1997-12-25 12:49:05 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1997-12-25 12:49:05 +0000 |
commit | 02dcadc29f84d5f9484e4e6430f941f794456ee5 (patch) | |
tree | c87a5617b75bc8d7e487545f46db561dbe603196 /sys/arch/i386/isa/isa_machdep.c | |
parent | 2666c578a6cecf647431d1e3a8388ce820123f4b (diff) |
If you're going to panic, at least print the IRQ so the user knows what to
look for in their BIOS...
Diffstat (limited to 'sys/arch/i386/isa/isa_machdep.c')
-rw-r--r-- | sys/arch/i386/isa/isa_machdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/isa/isa_machdep.c b/sys/arch/i386/isa/isa_machdep.c index 2eff3895446..de30e9e4e32 100644 --- a/sys/arch/i386/isa/isa_machdep.c +++ b/sys/arch/i386/isa/isa_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isa_machdep.c,v 1.25 1997/12/25 06:13:04 downsj Exp $ */ +/* $OpenBSD: isa_machdep.c,v 1.26 1997/12/25 12:49:04 downsj Exp $ */ /* $NetBSD: isa_machdep.c,v 1.14 1996/05/12 23:06:18 mycroft Exp $ */ /*- @@ -377,9 +377,9 @@ isa_intr_establish(ic, irq, type, level, ih_fun, ih_arg, ih_what) break; case IST_PULSE: if (type != IST_NONE) - panic("intr_establish: can't share %s with %s", + panic("intr_establish: can't share %s with %s, irq %d", isa_intr_typename(intrtype[irq]), - isa_intr_typename(type)); + isa_intr_typename(type), irq); break; } |