diff options
author | hselasky <hselasky@FreeBSD.org> | 2011-04-12 07:49:11 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2011-04-12 07:49:11 +0000 |
commit | 69b34d187e0a33741c3d82562e054e7fa2b01d4a (patch) | |
tree | eded5b9ebdeef770437b545bc02c9b60ce5bc175 /sys/dev/usb/controller/ehci_ixp4xx.c | |
parent | d47989ee77f9ae6b44a246efd8cd9bbe02a9bb25 (diff) | |
download | FreeBSD-src-69b34d187e0a33741c3d82562e054e7fa2b01d4a.zip FreeBSD-src-69b34d187e0a33741c3d82562e054e7fa2b01d4a.tar.gz |
We don't need to call EOWRITE4(sc, EHCI_USBINTR, 0) directly from each EHCI
bus driver at detach, hence ehci_detach() does exactly this since r199718.
Submitted by: Luiz Otavio O Souza
MFC after: 7 days
Approved by: thompsa (mentor)
Diffstat (limited to 'sys/dev/usb/controller/ehci_ixp4xx.c')
-rw-r--r-- | sys/dev/usb/controller/ehci_ixp4xx.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/dev/usb/controller/ehci_ixp4xx.c b/sys/dev/usb/controller/ehci_ixp4xx.c index 79e1ccc..8ea133f 100644 --- a/sys/dev/usb/controller/ehci_ixp4xx.c +++ b/sys/dev/usb/controller/ehci_ixp4xx.c @@ -259,13 +259,6 @@ ehci_ixp_detach(device_t self) /* during module unload there are lots of children leftover */ device_delete_all_children(self); - /* - * disable interrupts that might have been switched on in ehci_init - */ - if (sc->sc_io_res) { - EOWRITE4(sc, EHCI_USBINTR, 0); - } - if (sc->sc_irq_res && sc->sc_intr_hdl) { /* * only call ehci_detach() after ehci_init() |