This is Ethernet driver so mark the interrupt appropriately.

This commit is contained in:
Gleb Smirnoff 2020-01-23 01:46:05 +00:00
parent 0921628ddc
commit de086f1a6c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357011

View File

@ -189,7 +189,7 @@ llan_attach(device_t dev)
return (ENXIO);
}
bus_setup_intr(dev, sc->irq, INTR_TYPE_MISC | INTR_MPSAFE |
bus_setup_intr(dev, sc->irq, INTR_TYPE_NET | INTR_MPSAFE |
INTR_ENTROPY, NULL, llan_intr, sc, &sc->irq_cookie);
/* Setup DMA */