Changeset cac458f in mainline for uspace/drv/bus/usb/uhci/iface.c
- Timestamp:
- 2011-06-22T01:59:39Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 41e2118
- Parents:
- 79506d6 (diff), f1fae414 (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/bus/usb/uhci/iface.c
r79506d6 rcac458f 64 64 } 65 65 66 usb_log_debug ("%s %d:%d %zu(%zu).\n",66 usb_log_debug2("%s %d:%d %zu(%zu).\n", 67 67 name, target.address, target.endpoint, size, ep->max_packet_size); 68 68 … … 172 172 speed = ep_speed; 173 173 } 174 usb_log_debug("Register endpoint %d:%d %s %s(%d) %zu(%zu) %u.\n",174 usb_log_debug("Register endpoint %d:%d %s-%s %s %zuB %ums.\n", 175 175 address, endpoint, usb_str_transfer_type(transfer_type), 176 usb_str_speed(speed), direction, size, max_packet_size, interval); 176 usb_str_direction(direction), usb_str_speed(speed), 177 max_packet_size, interval); 177 178 178 179 return usb_endpoint_manager_add_ep(&hc->ep_manager, address, endpoint, … … 187 188 hc_t *hc = fun_to_hc(fun); 188 189 assert(hc); 189 usb_log_debug("Unregister endpoint %d:%d % d.\n",190 address, endpoint, direction);190 usb_log_debug("Unregister endpoint %d:%d %s.\n", 191 address, endpoint, usb_str_direction(direction)); 191 192 return usb_endpoint_manager_unregister_ep(&hc->ep_manager, address, 192 193 endpoint, direction);
Note:
See TracChangeset
for help on using the changeset viewer.