Changeset 1252e81 in mainline for uspace/drv/bus/usb/xhci/hc.c


Ignore:
Timestamp:
2017-10-20T09:52:48Z (7 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d1d7a92
Parents:
03936831
Message:

Added boilerplate function for isoch transfers. Some more checks.

File:
1 edited

Legend:

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

    r03936831 r1252e81  
    476476                return xhci_schedule_control_transfer(hc, batch);
    477477        case USB_TRANSFER_ISOCHRONOUS:
    478                 /* TODO: Implement me. */
    479                 usb_log_error("Isochronous transfers are not yet implemented!");
    480                 return ENOTSUP;
     478                return xhci_schedule_isochronous_transfer(hc, batch);
    481479        case USB_TRANSFER_BULK:
    482480                return xhci_schedule_bulk_transfer(hc, batch);
Note: See TracChangeset for help on using the changeset viewer.