Changes in uspace/lib/usbhost/src/batch.c [0c224b2:c4fb5ecd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/src/batch.c
r0c224b2 rc4fb5ecd 109 109 assert(instance); 110 110 assert(instance->ep); 111 assert(instance->next_step);112 111 endpoint_release(instance->ep); 113 112 instance->next_step(instance); … … 129 128 memcpy(instance->buffer, instance->data_buffer, instance->buffer_size); 130 129 131 usb_log_debug 2("Batch %p " USB_TRANSFER_BATCH_FMT " completed (%zuB): %s.\n",130 usb_log_debug("Batch %p " USB_TRANSFER_BATCH_FMT " completed (%zuB): %s.\n", 132 131 instance, USB_TRANSFER_BATCH_ARGS(*instance), 133 132 instance->transfered_size, str_error(instance->error)); … … 146 145 assert(instance->callback_out); 147 146 148 usb_log_debug 2("Batch %p " USB_TRANSFER_BATCH_FMT " completed: %s.\n",147 usb_log_debug("Batch %p " USB_TRANSFER_BATCH_FMT " completed: %s.\n", 149 148 instance, USB_TRANSFER_BATCH_ARGS(*instance), 150 149 str_error(instance->error));
Note:
See TracChangeset
for help on using the changeset viewer.