diff options
author | hselasky <hselasky@FreeBSD.org> | 2011-04-03 20:17:49 +0000 |
---|---|---|
committer | hselasky <hselasky@FreeBSD.org> | 2011-04-03 20:17:49 +0000 |
commit | 58267dbb2ec6d75b97dc1de7caeb7995984e2149 (patch) | |
tree | 2d91f1eb2cbb73a9b6977b59240b65e17c036bee /sys/dev/usb/controller/ehci_ixp4xx.c | |
parent | e36db9e5f9c987b8da6840ba212fd09ad1a51705 (diff) | |
download | FreeBSD-src-58267dbb2ec6d75b97dc1de7caeb7995984e2149.zip FreeBSD-src-58267dbb2ec6d75b97dc1de7caeb7995984e2149.tar.gz |
- Correct EHCI interrupt disabling at detach.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/controller/ehci_ixp4xx.c b/sys/dev/usb/controller/ehci_ixp4xx.c index 706fb06..79e1ccc 100644 --- a/sys/dev/usb/controller/ehci_ixp4xx.c +++ b/sys/dev/usb/controller/ehci_ixp4xx.c @@ -263,7 +263,7 @@ ehci_ixp_detach(device_t self) * disable interrupts that might have been switched on in ehci_init */ if (sc->sc_io_res) { - EWRITE4(sc, EHCI_USBINTR, 0); + EOWRITE4(sc, EHCI_USBINTR, 0); } if (sc->sc_irq_res && sc->sc_intr_hdl) { |