Remove an unnecessary INTR_MPSAFE and a comment suggesting it was

unnecessary.
This commit is contained in:
John Baldwin 2011-01-06 21:02:14 +00:00
parent 1f60bb276b
commit 3a9c343466

View File

@ -375,9 +375,7 @@ adlink_attach(device_t self)
if (error)
return (error);
/* XXX why do we need INTR_MPSAFE if INTR_FAST was declared too?!?!? */
i = bus_setup_intr(self, sc->res[2],
INTR_MPSAFE | INTR_TYPE_MISC,
i = bus_setup_intr(self, sc->res[2], INTR_TYPE_MISC,
adlink_intr, NULL, sc, &sc->intrhand);
if (i) {
printf("adlink: Couldn't get FAST intr\n");