diff options
author | 1995-12-27 22:06:03 +0000 | |
---|---|---|
committer | 1995-12-27 22:06:03 +0000 | |
commit | eecb46f8754b0dfaa24fb6adf798ef64a9d9507c (patch) | |
tree | 8e40dd7201c30adb1e6be4c90774af856137d5fb /sys/dev/isa/gus.c | |
parent | from netbsd; merge latest Thomas version with our minimal changes (diff) | |
download | wireguard-openbsd-eecb46f8754b0dfaa24fb6adf798ef64a9d9507c.tar.xz wireguard-openbsd-eecb46f8754b0dfaa24fb6adf798ef64a9d9507c.zip |
from netbsd:
The IST_* and IPL_* constants are not bus-specific; don't treat them as such.
Change splimp -> splnet in Ethernet, ARCnet, and FDDI drivers.
Diffstat (limited to 'sys/dev/isa/gus.c')
-rw-r--r-- | sys/dev/isa/gus.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/gus.c b/sys/dev/isa/gus.c index 7f1c415f434..b43fd76c6dd 100644 --- a/sys/dev/isa/gus.c +++ b/sys/dev/isa/gus.c @@ -911,10 +911,10 @@ gusattach(parent, self, aux) */ /* XXX we shouldn't have to use splgus == splclock, nor should - * we use ISA_IPL_CLOCK. + * we use IPL_CLOCK. */ - sc->sc_ih = isa_intr_establish(ia->ia_irq, ISA_IST_EDGE, ISA_IPL_AUDIO, - gusintr, sc /* sc->sc_gusdsp */); + sc->sc_ih = isa_intr_establish(ia->ia_irq, IST_EDGE, IPL_AUDIO, gusintr, + sc /* sc->sc_gusdsp */); /* * Set some default values |