Changeset 6de4b4a1 in mainline
- Timestamp:
- 2015-07-03T22:48:44Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 954d590
- Parents:
- 090eea68
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_endpoint.c
r090eea68 r6de4b4a1 52 52 assert(instance->qh); 53 53 if (qh_toggle_from_td(instance->qh)) 54 usb_log_warning("Setting toggle bit for transfer directed EP\n"); 54 usb_log_warning("EP(%p): Setting toggle bit for transfer " 55 "directed EP", instance); 55 56 qh_toggle_set(instance->qh, toggle); 56 57 } … … 67 68 assert(instance->qh); 68 69 if (qh_toggle_from_td(instance->qh)) 69 usb_log_warning(" Reading useless toggle bit\n");70 usb_log_warning("EP(%p): Reading useless toggle bit", instance); 70 71 return qh_toggle_get(instance->qh); 71 72 } … … 89 90 } 90 91 92 usb_log_debug2("EP(%p): Creating for %p", ehci_ep, ep); 91 93 link_initialize(&ehci_ep->link); 92 94 qh_init(ehci_ep->qh, ep); … … 109 111 hc_dequeue_endpoint(hcd->driver.data, ep); 110 112 endpoint_clear_hc_data(ep); 113 usb_log_debug2("EP(%p): Destroying for %p", instance, ep); 111 114 if (instance) { 112 115 free32(instance->qh);
Note:
See TracChangeset
for help on using the changeset viewer.