Changeset ba17f5b in mainline for uspace/lib/usb/src/host/batch.c
- Timestamp:
- 2011-05-07T08:20:20Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bd2394b
- Parents:
- 5f7b75a (diff), 6c6a95d2 (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/usb/src/host/batch.c
r5f7b75a rba17f5b 128 128 memcpy(instance->buffer, instance->data_buffer, instance->buffer_size); 129 129 130 usb_log_debug("Batch %pdone (T%d.%d, %s %s in, %zuB): %s (%d).\n",130 usb_log_debug("Batch(%p) done (T%d.%d, %s %s in, %zuB): %s (%d).\n", 131 131 instance, instance->ep->address, instance->ep->endpoint, 132 132 usb_str_speed(instance->ep->speed), 133 133 usb_str_transfer_type_short(instance->ep->transfer_type), 134 instance->transfered_size, str_error(instance->error), instance->error); 134 instance->transfered_size, str_error(instance->error), 135 instance->error); 135 136 136 137 instance->callback_in(instance->fun, instance->error, … … 147 148 assert(instance->callback_out); 148 149 149 usb_log_debug("Batch %pdone (T%d.%d, %s %s out): %s (%d).\n",150 usb_log_debug("Batch(%p) done (T%d.%d, %s %s out): %s (%d).\n", 150 151 instance, instance->ep->address, instance->ep->endpoint, 151 152 usb_str_speed(instance->ep->speed),
Note:
See TracChangeset
for help on using the changeset viewer.