summaryrefslogtreecommitdiff
path: root/sys/dev/isa/isavar.h
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-02-20 04:36:20 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-02-20 04:36:20 +0000
commite1db5c4a473d067a236a9deb6aaf0d4b49037ab0 (patch)
treed99a015cd4bf0a19ed04cd028e4c95a554f20949 /sys/dev/isa/isavar.h
parent5de6545ee7bb75bb0895f89e1e1086f2d570db11 (diff)
Pass device name to interrupt establish routines so it can be recorded in
the device interrupt chain structures (isa, pci) Move interrupt chain structure definition to <machine/psl.h> so vmstat can get at it (i386) Remove hack to count interrupts the old way (i386)
Diffstat (limited to 'sys/dev/isa/isavar.h')
-rw-r--r--sys/dev/isa/isavar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/isa/isavar.h b/sys/dev/isa/isavar.h
index 05b6b317c9a..77649082241 100644
--- a/sys/dev/isa/isavar.h
+++ b/sys/dev/isa/isavar.h
@@ -104,7 +104,7 @@ struct isa_softc {
/* ISA interrupt sharing types */
void isascan __P((struct device *parent, void *match));
void *isa_intr_establish __P((int intr, int type, int level,
- int (*ih_fun)(void *), void *ih_arg));
+ int (*ih_fun)(void *), void *ih_arg, char *ih_what));
void isa_intr_disestablish __P((void *handler));
char *isa_intr_typename __P((int type));