Changeset f126c87 in mainline for uspace/lib/usbhost/src/usb_transfer_batch.c
- Timestamp:
- 2016-09-01T16:46:27Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2a2fbc8
- Parents:
- 9befb0d (diff), bdfdc51c (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/usb_transfer_batch.c
r9befb0d rf126c87 56 56 * @return Pointer to valid usb_transfer_batch_t structure, NULL on failure. 57 57 */ 58 usb_transfer_batch_t * usb_transfer_batch_create( 59 endpoint_t *ep, 60 char *buffer, 58 usb_transfer_batch_t *usb_transfer_batch_create(endpoint_t *ep, char *buffer, 61 59 size_t buffer_size, 62 60 uint64_t setup_buffer, 63 61 usbhc_iface_transfer_in_callback_t func_in, 64 62 usbhc_iface_transfer_out_callback_t func_out, 65 void *arg 66 ) 63 void *arg) 67 64 { 68 65 if (func_in == NULL && func_out == NULL)
Note:
See TracChangeset
for help on using the changeset viewer.