summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/controller/ehci_mv.c
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2011-01-06 21:08:06 +0000
committerjhb <jhb@FreeBSD.org>2011-01-06 21:08:06 +0000
commitae4deb7aadbe0e6c12eb264f6a7c19fd3fd582fc (patch)
tree3b0c63d523bfa220e197106927726c6b8ca7ce59 /sys/dev/usb/controller/ehci_mv.c
parentfe1ba87ad17386619bc6fb121fc6e73278f36247 (diff)
downloadFreeBSD-src-ae4deb7aadbe0e6c12eb264f6a7c19fd3fd582fc.zip
FreeBSD-src-ae4deb7aadbe0e6c12eb264f6a7c19fd3fd582fc.tar.gz
Remove bogus usage of INTR_FAST. "Fast" interrupts are now indicated by
registering a filter handler rather than a threaded handler. Also remove a bogus use of INTR_MPSAFE for a filter.
Diffstat (limited to 'sys/dev/usb/controller/ehci_mv.c')
-rw-r--r--sys/dev/usb/controller/ehci_mv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/ehci_mv.c b/sys/dev/usb/controller/ehci_mv.c
index b22303f..c51865c 100644
--- a/sys/dev/usb/controller/ehci_mv.c
+++ b/sys/dev/usb/controller/ehci_mv.c
@@ -225,7 +225,7 @@ mv_ehci_attach(device_t self)
sprintf(sc->sc_vendor, "Marvell");
- err = bus_setup_intr(self, irq_err, INTR_FAST | INTR_TYPE_BIO,
+ err = bus_setup_intr(self, irq_err, INTR_TYPE_BIO,
err_intr, NULL, sc, &ih_err);
if (err) {
device_printf(self, "Could not setup error irq, %d\n", err);
OpenPOWER on IntegriCloud