Changeset 45457265 in mainline for uspace/drv/bus/usb/xhci/isoch.h


Ignore:
Timestamp:
2018-02-03T02:14:26Z (6 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
eb862fd
Parents:
961a5ee
Message:

errno_t all the things!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/xhci/isoch.h

    r961a5ee r45457265  
    6868
    6969        /** Result of the transfer. Valid only if status == ISOCH_COMPLETE. */
    70         int error;
     70        errno_t error;
    7171} xhci_isoch_transfer_t;
    7272
     
    119119extern void isoch_init(xhci_endpoint_t *, const usb_endpoint_descriptors_t *);
    120120extern void isoch_fini(xhci_endpoint_t *);
    121 extern int isoch_alloc_transfers(xhci_endpoint_t *);
     121extern errno_t isoch_alloc_transfers(xhci_endpoint_t *);
    122122
    123 extern int isoch_schedule_out(xhci_transfer_t *);
    124 extern int isoch_schedule_in(xhci_transfer_t *);
     123extern errno_t isoch_schedule_out(xhci_transfer_t *);
     124extern errno_t isoch_schedule_in(xhci_transfer_t *);
    125125extern void isoch_handle_transfer_event(xhci_hc_t *, xhci_endpoint_t *, xhci_trb_t *);
    126126
Note: See TracChangeset for help on using the changeset viewer.