diff options
author | joe <joe@FreeBSD.org> | 2002-05-22 22:58:38 +0000 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-05-22 22:58:38 +0000 |
commit | 1e351800958f82ac8901046da572b3238eaf0d0a (patch) | |
tree | 3c634a52cf58ca8fb0246b9d553026336dc98dc9 /sys/dev/usb/usbdi.c | |
parent | debad274d2013c4921a36d464e79a0f67a31b983 (diff) | |
download | FreeBSD-src-1e351800958f82ac8901046da572b3238eaf0d0a.zip FreeBSD-src-1e351800958f82ac8901046da572b3238eaf0d0a.tar.gz |
Fix a bug: Use USBD_DEFAULT_INTERVAL instead of USBD_DEFAULT_TIMEOUT
in a call to usbd_open_pipe_ival.
Diffstat (limited to 'sys/dev/usb/usbdi.c')
-rw-r--r-- | sys/dev/usb/usbdi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/usb/usbdi.c b/sys/dev/usb/usbdi.c index 82d1ed6..40f03b7 100644 --- a/sys/dev/usb/usbdi.c +++ b/sys/dev/usb/usbdi.c @@ -178,7 +178,7 @@ usbd_open_pipe(usbd_interface_handle iface, u_int8_t address, u_int8_t flags, usbd_pipe_handle *pipe) { return (usbd_open_pipe_ival(iface, address, flags, pipe, - USBD_DEFAULT_TIMEOUT)); + USBD_DEFAULT_INTERVAL)); } usbd_status |