mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
This is Ethernet driver so mark the interrupt appropriately.
This commit is contained in:
parent
0921628ddc
commit
de086f1a6c
1 changed files with 1 additions and 1 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue