Changeset cd1cec3b in mainline for uspace/drv/uhci-hcd
- Timestamp:
- 2011-04-08T11:31:30Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4fd3faf
- Parents:
- 6a32665d
- Location:
- uspace/drv/uhci-hcd
- Files:
-
- 2 edited
-
hc.c (modified) (1 diff)
-
transfer_list.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/hc.c
r6a32665d rcd1cec3b 381 381 case USB_TRANSFER_INTERRUPT: 382 382 case USB_TRANSFER_ISOCHRONOUS: { 383 /*384 int ret = bandwidth_free(&instance->bandwidth,385 batch->target.address,386 batch->target.endpoint,387 batch->direction);388 if (ret != EOK)389 usb_log_warning("Failed(%d) to free "390 "reserved bw: %s.\n", ret,391 str_error(ret));392 */393 383 } 394 384 default: 395 385 break; 396 386 } 397 batch->next_step(batch);387 usb_transfer_batch_finish(batch); 398 388 } 399 389 } -
uspace/drv/uhci-hcd/transfer_list.c
r6a32665d rcd1cec3b 176 176 list_get_instance(current, usb_transfer_batch_t, link); 177 177 transfer_list_remove_batch(instance, batch); 178 usb_transfer_batch_finish (batch, EIO);178 usb_transfer_batch_finish_error(batch, EIO); 179 179 } 180 180 fibril_mutex_unlock(&instance->guard);
Note:
See TracChangeset
for help on using the changeset viewer.
