svn commit: r199718 - head/sys/dev/usb/controller
Andrew Thompson
thompsa at FreeBSD.org
Mon Nov 23 18:12:09 UTC 2009
Author: thompsa
Date: Mon Nov 23 18:12:09 2009
New Revision: 199718
URL: http://svn.freebsd.org/changeset/base/199718
Log:
Actually disable interrupts in ehci_detach().
Reviewed by: HPS
Modified:
head/sys/dev/usb/controller/ehci.c
Modified: head/sys/dev/usb/controller/ehci.c
==============================================================================
--- head/sys/dev/usb/controller/ehci.c Mon Nov 23 18:07:28 2009 (r199717)
+++ head/sys/dev/usb/controller/ehci.c Mon Nov 23 18:12:09 2009 (r199718)
@@ -528,7 +528,7 @@ ehci_detach(ehci_softc_t *sc)
usb_callout_stop(&sc->sc_tmo_pcd);
usb_callout_stop(&sc->sc_tmo_poll);
- EOWRITE4(sc, EHCI_USBINTR, sc->sc_eintrs);
+ EOWRITE4(sc, EHCI_USBINTR, 0);
USB_BUS_UNLOCK(&sc->sc_bus);
if (ehci_hcreset(sc)) {
More information about the svn-src-head
mailing list