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/if_ed.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/if_ed.c')
-rw-r--r-- | sys/dev/isa/if_ed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/isa/if_ed.c b/sys/dev/isa/if_ed.c index 06c0142a9ca..72898d40edd 100644 --- a/sys/dev/isa/if_ed.c +++ b/sys/dev/isa/if_ed.c @@ -1263,7 +1263,7 @@ edattach(parent, self, aux) #endif sc->sc_ih = isa_intr_establish(ia->ia_irq, IST_EDGE, IPL_NET, edintr, - sc); + sc, sc->sc_dev.dv_xname); sc->sc_sh = shutdownhook_establish((void (*)(void *))edstop, sc); } |