Changes in uspace/lib/usb/src/host/batch.c [c15070c:c92c13f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/src/host/batch.c
rc15070c rc92c13f 30 30 */ 31 31 /** @file 32 * @brief OHCI driver USB transaction structure32 * USB transfer transaction structures (implementation). 33 33 */ 34 34 #include <errno.h> … … 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.