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/dev/isa/fd.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/dev/isa/fd.c')
-rw-r--r-- | sys/dev/isa/fd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/isa/fd.c b/sys/dev/isa/fd.c index 5ef1f655df8..6dc8d799112 100644 --- a/sys/dev/isa/fd.c +++ b/sys/dev/isa/fd.c @@ -305,8 +305,8 @@ fdcattach(parent, self, aux) at_setup_dmachan(fdc->sc_drq, FDC_MAXIOSIZE); isa_establish(&fdc->sc_id, &fdc->sc_dev); #endif - fdc->sc_ih = isa_intr_establish(ia->ia_irq, ISA_IST_EDGE, ISA_IPL_BIO, - fdcintr, fdc); + fdc->sc_ih = isa_intr_establish(ia->ia_irq, IST_EDGE, IPL_BIO, fdcintr, + fdc); /* * The NVRAM info only tells us about the first two disks on the |