Changeset 64ce0c1 in mainline for uspace/lib/usbhost/src
- Timestamp:
- 2018-02-02T10:13:55Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 961a5ee
- Parents:
- e67c50a (diff), 290338b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/src/endpoint.c
re67c50a r64ce0c1 244 244 245 245 /** Limit transfers with reserved bandwidth to the amount reserved */ 246 if ((ep->transfer_type == USB_TRANSFER_INTERRUPT 247 || ep->transfer_type == USB_TRANSFER_ISOCHRONOUS) 248 && size > ep->max_transfer_size) 246 if (ep->direction == USB_DIRECTION_OUT && size > ep->max_transfer_size) 249 247 return ENOSPC; 250 248
Note:
See TracChangeset
for help on using the changeset viewer.