Changeset 1d1bb0f in mainline for uspace/drv/uhci/transfer_list.c
- Timestamp:
- 2011-06-19T13:38:37Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b72efe8
- Parents:
- adfdbd5 (diff), 9724d7f (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/transfer_list.c
radfdbd5 r1d1bb0f 141 141 list_append(&batch->link, &instance->batch_list); 142 142 143 usb_transfer_batch_t *first = list_get_instance( 144 instance->batch_list.next, usb_transfer_batch_t, link); 145 usb_log_debug("Batch(%p) added to queue %s, first is %p.\n", 146 batch, instance->name, first); 143 usb_log_debug("Batch %p " USB_TRANSFER_BATCH_FMT " scheduled in queue %s.\n", 144 batch, USB_TRANSFER_BATCH_ARGS(*batch), instance->name); 147 145 fibril_mutex_unlock(&instance->guard); 148 146 } … … 234 232 /* Remove from the batch list */ 235 233 list_remove(&batch->link); 236 usb_log_debug("Batch(%p) removed (%s) from %s, next: %x.\n", 237 batch, qpos, instance->name, batch_qh(batch)->next); 234 usb_log_debug2("Batch %p " USB_TRANSFER_BATCH_FMT " removed (%s) " 235 "from %s, next: %x.\n", 236 batch, USB_TRANSFER_BATCH_ARGS(*batch), 237 qpos, instance->name, batch_qh(batch)->next); 238 238 } 239 239 /**
Note:
See TracChangeset
for help on using the changeset viewer.