Changeset 1387692 in mainline for uspace/lib/usb/src/host/batch.c
- Timestamp:
- 2011-03-21T15:01:52Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c92c13f
- Parents:
- e34e77a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/host/batch.c
re34e77a r1387692 39 39 #include <usb/host/batch.h> 40 40 41 void batch_init(42 batch_t *instance,41 void usb_transfer_batch_init( 42 usb_transfer_batch_t *instance, 43 43 usb_target_t target, 44 44 usb_transfer_type_t transfer_type, … … 85 85 * 86 86 */ 87 void batch_finish(batch_t *instance, int error)87 void usb_transfer_batch_finish(usb_transfer_batch_t *instance, int error) 88 88 { 89 89 assert(instance); … … 98 98 * parameters. 99 99 */ 100 void batch_call_in(batch_t *instance)100 void usb_transfer_batch_call_in(usb_transfer_batch_t *instance) 101 101 { 102 102 assert(instance); … … 120 120 * @param[in] instance Batch structure to use. 121 121 */ 122 void batch_call_out(batch_t *instance)122 void usb_transfer_batch_call_out(usb_transfer_batch_t *instance) 123 123 { 124 124 assert(instance);
Note:
See TracChangeset
for help on using the changeset viewer.