diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-27 22:10:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-27 22:10:56 +0000 |
commit | 7ed2948b32b317270cab3e79f1c4131941f9b60b (patch) | |
tree | fe14ac6c1245a4d30faa6e0beff2ab31ca247c51 /sys/arch/i386/isa/mms.c | |
parent | 19c4b654cc723df0e419fd9f12197f491b1bc1d4 (diff) |
from netbsd:
The IST_* and IPL_* constants are not bus-specific; don't treat them as such.
Diffstat (limited to 'sys/arch/i386/isa/mms.c')
-rw-r--r-- | sys/arch/i386/isa/mms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/isa/mms.c b/sys/arch/i386/isa/mms.c index 9081d199a82..7fe4586036d 100644 --- a/sys/arch/i386/isa/mms.c +++ b/sys/arch/i386/isa/mms.c @@ -109,8 +109,8 @@ mmsattach(parent, self, aux) sc->sc_iobase = iobase; sc->sc_state = 0; - sc->sc_ih = isa_intr_establish(ia->ia_irq, ISA_IST_PULSE, ISA_IPL_TTY, - mmsintr, sc); + sc->sc_ih = isa_intr_establish(ia->ia_irq, IST_PULSE, IPL_TTY, mmsintr, + sc); } int |