Changeset 42bc933 in mainline for uspace/drv/bus/usb/xhci/hc.c


Ignore:
Timestamp:
2017-10-09T16:27:02Z (7 years ago)
Author:
Michal Staruch <salmelu@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
ac18b08
Parents:
a0be5d0
Message:

Dummy for bulk transfers (need to support streams)

File:
1 edited

Legend:

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

    ra0be5d0 r42bc933  
    464464        switch (batch->ep->transfer_type) {
    465465        case USB_TRANSFER_CONTROL:
    466                 xhci_schedule_control_transfer(hc, batch);
    467                 break;
     466                return xhci_schedule_control_transfer(hc, batch);
    468467        case USB_TRANSFER_ISOCHRONOUS:
    469468                /* TODO: Implement me. */
    470469                break;
    471470        case USB_TRANSFER_BULK:
    472                 /* TODO: Implement me. */
    473                 break;
     471                return xhci_schedule_bulk_transfer(hc, batch);
    474472        case USB_TRANSFER_INTERRUPT:
    475473                /* TODO: Implement me. */
Note: See TracChangeset for help on using the changeset viewer.