Somehow I missed this. Use INTR_TYPE_AV (high priority) instead of

INTR_TYPE_TTY (lowest priority).
This commit is contained in:
Peter Wemm 2001-07-09 23:44:54 +00:00
parent fb8d590c0e
commit 57385865a9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79498

View File

@ -725,7 +725,7 @@ als_resource_grab(device_t dev, struct sc_info *sc)
goto bad;
}
if (bus_setup_intr(dev, sc->irq, INTR_TYPE_TTY, als_intr,
if (bus_setup_intr(dev, sc->irq, INTR_TYPE_AV, als_intr,
sc, &sc->ih)) {
device_printf(dev, "unable to setup interrupt\n");
goto bad;