summaryrefslogtreecommitdiffstats
path: root/sys/dev/fatm
diff options
context:
space:
mode:
authorharti <harti@FreeBSD.org>2006-03-21 14:56:42 +0000
committerharti <harti@FreeBSD.org>2006-03-21 14:56:42 +0000
commitcfaf71ad4b6044ddebd8abcc5fce3056590f73df (patch)
tree4c12eeda914fb5f9ec0c3b64f5a08d2e187b2455 /sys/dev/fatm
parent470a08aa5e2c5d203375f2eec82e659973ceb4eb (diff)
downloadFreeBSD-src-cfaf71ad4b6044ddebd8abcc5fce3056590f73df.zip
FreeBSD-src-cfaf71ad4b6044ddebd8abcc5fce3056590f73df.tar.gz
This driver has been MPSAFE from the beginning so declare the interrupt
as such. Reminded by: rwatson@
Diffstat (limited to 'sys/dev/fatm')
-rw-r--r--sys/dev/fatm/if_fatm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/fatm/if_fatm.c b/sys/dev/fatm/if_fatm.c
index 30e2734..6916c8c 100644
--- a/sys/dev/fatm/if_fatm.c
+++ b/sys/dev/fatm/if_fatm.c
@@ -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");
OpenPOWER on IntegriCloud