Changeset 92900e2 in mainline for uspace/drv/bus/usb/ehci/hc.c


Ignore:
Timestamp:
2015-06-28T23:33:27Z (9 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c86ca9a
Parents:
1329dc0
Message:

ehci: Add more debugging output

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ehci/hc.c

    r1329dc0 r92900e2  
    220220        assert(ep);
    221221        ehci_endpoint_t *ehci_ep = ehci_endpoint_get(ep);
     222        usb_log_debug("HCD(%p) enqueue EP(%d:%d:%s:%s)\n", instance,
     223            ep->address, ep->endpoint,
     224            usb_str_transfer_type_short(ep->transfer_type),
     225            usb_str_direction(ep->direction));
    222226        switch (ep->transfer_type)
    223227        {
     
    240244        assert(ep);
    241245        ehci_endpoint_t *ehci_ep = ehci_endpoint_get(ep);
     246        usb_log_debug("HCD(%p) dequeue EP(%d:%d:%s:%s)\n", instance,
     247            ep->address, ep->endpoint,
     248            usb_str_transfer_type_short(ep->transfer_type),
     249            usb_str_direction(ep->direction));
    242250        switch (ep->transfer_type)
    243251        {
Note: See TracChangeset for help on using the changeset viewer.