This driver has been MPSAFE from the beginning so declare the interrupt

as such.

Reminded by:	rwatson@
This commit is contained in:
harti 2006-03-21 14:56:42 +00:00
parent 470a08aa5e
commit cfaf71ad4b

View File

@ -3059,7 +3059,7 @@ fatm_attach(device_t dev)
bpfattach(ifp, DLT_ATM_RFC1483, sizeof(struct atmllc));
#endif
error = bus_setup_intr(dev, sc->irqres, INTR_TYPE_NET,
error = bus_setup_intr(dev, sc->irqres, INTR_TYPE_NET | INTR_MPSAFE,
fatm_intr, sc, &sc->ih);
if (error) {
if_printf(ifp, "couldn't setup irq\n");