Changeset a1732929 in mainline for uspace/drv/bus/usb/ehci/endpoint_list.c
- Timestamp:
- 2018-01-15T17:04:34Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9ff99e8
- Parents:
- c1a966e
- git-author:
- Ondřej Hlavatý <aearsis@…> (2018-01-15 17:04:32)
- git-committer:
- Ondřej Hlavatý <aearsis@…> (2018-01-15 17:04:34)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/endpoint_list.c
rc1a966e ra1732929 97 97 assert(ep); 98 98 assert(ep->qh); 99 usb_log_debug2("EPL(%p-%s): Append endpoint(%p). \n",99 usb_log_debug2("EPL(%p-%s): Append endpoint(%p).", 100 100 instance, instance->name, ep); 101 101 … … 128 128 ehci_endpoint_t *first = ehci_endpoint_list_instance( 129 129 list_first(&instance->endpoint_list)); 130 usb_log_debug("EPL(%p-%s): EP(%p) added to list, first is %p(%p). \n",130 usb_log_debug("EPL(%p-%s): EP(%p) added to list, first is %p(%p).", 131 131 instance, instance->name, ep, first, first->qh); 132 132 if (last_qh == instance->list_head) { 133 usb_log_debug2("EPL(%p-%s): head EP(%p-%"PRIxn"): %x:%x. \n",133 usb_log_debug2("EPL(%p-%s): head EP(%p-%"PRIxn"): %x:%x.", 134 134 instance, instance->name, last_qh, 135 135 addr_to_phys(instance->list_head), … … 153 153 fibril_mutex_lock(&instance->guard); 154 154 155 usb_log_debug2("EPL(%p-%s): removing EP(%p). \n",155 usb_log_debug2("EPL(%p-%s): removing EP(%p).", 156 156 instance, instance->name, ep); 157 157 … … 172 172 write_barrier(); 173 173 174 usb_log_debug("EPL(%p-%s): EP(%p) removed (%s), horizontal %x. \n",174 usb_log_debug("EPL(%p-%s): EP(%p) removed (%s), horizontal %x.", 175 175 instance, instance->name, ep, qpos, ep->qh->horizontal); 176 176
Note:
See TracChangeset
for help on using the changeset viewer.