Changeset df949c5 in mainline for uspace/drv/uhci-hcd/iface.c
- Timestamp:
- 2011-03-11T17:33:50Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- dd6f59f
- Parents:
- b3bdb68 (diff), bf4cc3e (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/drv/uhci-hcd/iface.c
rb3bdb68 rdf949c5 280 280 assert(hc); 281 281 usb_speed_t speed = device_keeper_speed(&hc->device_manager, target.address); 282 usb_log_debug("Control WRITE %d:%d %zu(%zu).\n",283 target.address, target.endpoint, size, max_packet_size);282 usb_log_debug("Control WRITE (%d) %d:%d %zu(%zu).\n", 283 speed, target.address, target.endpoint, size, max_packet_size); 284 284 285 285 if (setup_size != 8) … … 319 319 usb_speed_t speed = device_keeper_speed(&hc->device_manager, target.address); 320 320 321 usb_log_debug("Control READ %d:%d %zu(%zu).\n",322 target.address, target.endpoint, size, max_packet_size);321 usb_log_debug("Control READ(%d) %d:%d %zu(%zu).\n", 322 speed, target.address, target.endpoint, size, max_packet_size); 323 323 batch_t *batch = batch_get(fun, target, USB_TRANSFER_CONTROL, 324 324 max_packet_size, speed, data, size, setup_data, setup_size, callback,
Note:
See TracChangeset
for help on using the changeset viewer.