summaryrefslogtreecommitdiffstats
path: root/sys/dev/usb/controller/uhci.c
diff options
context:
space:
mode:
authorthompsa <thompsa@FreeBSD.org>2010-06-22 20:57:48 +0000
committerthompsa <thompsa@FreeBSD.org>2010-06-22 20:57:48 +0000
commitfe6aa0a139aad7873eb103f50e6b1a5cf57d795b (patch)
tree309d928489f1ea66c71c2f1880e5b0478ac9dd21 /sys/dev/usb/controller/uhci.c
parentcc9971b6817a61a639c00353a0740ae955030847 (diff)
downloadFreeBSD-src-fe6aa0a139aad7873eb103f50e6b1a5cf57d795b.zip
FreeBSD-src-fe6aa0a139aad7873eb103f50e6b1a5cf57d795b.tar.gz
Add support for LOW speed BULK transfers. This mode is not recommended by the
USB 2.0 standard, though some USB devices use it anyway. Submitted by: Hans Petter Selasky
Diffstat (limited to 'sys/dev/usb/controller/uhci.c')
-rw-r--r--sys/dev/usb/controller/uhci.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/usb/controller/uhci.c b/sys/dev/usb/controller/uhci.c
index f87907c..50fdb0d 100644
--- a/sys/dev/usb/controller/uhci.c
+++ b/sys/dev/usb/controller/uhci.c
@@ -3068,9 +3068,7 @@ uhci_ep_init(struct usb_device *udev, struct usb_endpoint_descriptor *edesc,
}
break;
case UE_BULK:
- if (udev->speed != USB_SPEED_LOW) {
- ep->methods = &uhci_device_bulk_methods;
- }
+ ep->methods = &uhci_device_bulk_methods;
break;
default:
/* do nothing */
OpenPOWER on IntegriCloud