diff options
author | 1996-02-20 04:35:23 +0000 | |
---|---|---|
committer | 1996-02-20 04:35:23 +0000 | |
commit | a90518f7ea30e1eea654d42ce8700c4c2fb1f36d (patch) | |
tree | b5e8fc8d61dbe0f4ad378d7ad58b8eaae0b95642 /sys/dev/isa/ast.c | |
parent | Sync. w/ NetBSD (diff) | |
download | wireguard-openbsd-a90518f7ea30e1eea654d42ce8700c4c2fb1f36d.tar.xz wireguard-openbsd-a90518f7ea30e1eea654d42ce8700c4c2fb1f36d.zip |
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/ast.c')
-rw-r--r-- | sys/dev/isa/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/isa/ast.c b/sys/dev/isa/ast.c index 9676c79d298..79bc9c7dc57 100644 --- a/sys/dev/isa/ast.c +++ b/sys/dev/isa/ast.c @@ -140,7 +140,7 @@ astattach(parent, self, aux) } sc->sc_ih = isa_intr_establish(ia->ia_irq, IST_EDGE, IPL_TTY, astintr, - sc); + sc, sc->sc_dev.dv_xname); } int |