summaryrefslogtreecommitdiff
path: root/sys/arch/i386/isa/isa_machdep.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1996-03-20 00:31:09 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1996-03-20 00:31:09 +0000
commit93ce481f9dd927ef994251f523fcf65ad4d2064d (patch)
tree45278040775ccd7359f62f450028f2a97f41087c /sys/arch/i386/isa/isa_machdep.c
parent2e10b7a7af1f4e9e040a2d72a7fde7278acc707d (diff)
Fix back wrong patches.
Diffstat (limited to 'sys/arch/i386/isa/isa_machdep.c')
-rw-r--r--sys/arch/i386/isa/isa_machdep.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/isa_machdep.c b/sys/arch/i386/isa/isa_machdep.c
index 93f22d78a73..044e9478acf 100644
--- a/sys/arch/i386/isa/isa_machdep.c
+++ b/sys/arch/i386/isa/isa_machdep.c
@@ -249,12 +249,13 @@ fakeintr(arg)
* XXX PRONE TO RACE CONDITIONS, UGLY, 'INTERESTING' INSERTION ALGORITHM.
*/
void *
-isa_intr_establish(irq, type, level, ih_fun, ih_arg)
+isa_intr_establish(irq, type, level, ih_fun, ih_arg, ih_what)
int irq;
int type;
int level;
int (*ih_fun) __P((void *));
void *ih_arg;
+ char *ih_what;
{
struct intrhand **p, *q, *ih;
static struct intrhand fakehand = {fakeintr};
@@ -308,6 +309,7 @@ isa_intr_establish(irq, type, level, ih_fun, ih_arg)
ih->ih_next = NULL;
ih->ih_level = level;
ih->ih_irq = irq;
+ ih->ih_what = ih_what;
*p = ih;
return (ih);