Changeset 6991188 in mainline for uspace/drv/ohci/transfer_list.c
- Timestamp:
- 2011-04-11T13:40:00Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d91645ab
- Parents:
- 1a46610 (diff), 9f104af4 (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/ohci/transfer_list.c
r1a46610 r6991188 79 79 assert(instance); 80 80 assert(next); 81 /* Set both queue_head.next to point to the follower */82 81 ed_append_ed(instance->list_head, next->list_head); 83 82 } … … 125 124 batch, instance->name, first, batch_ed(first)); 126 125 if (last_ed == instance->list_head) { 127 usb_log_debug2("%s head ED: %x:%x:%x:%x.\n", instance->name, 128 last_ed->status, last_ed->td_tail, last_ed->td_head, 129 last_ed->next); 126 usb_log_debug2("%s head ED(%p-%p): %x:%x:%x:%x.\n", 127 instance->name, last_ed, instance->list_head_pa, 128 last_ed->status, last_ed->td_tail, last_ed->td_head, 129 last_ed->next); 130 130 } 131 131 fibril_mutex_unlock(&instance->guard);
Note:
See TracChangeset
for help on using the changeset viewer.