Ignore:
Timestamp:
2018-01-31T02:21:24Z (7 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0a9cc2
Parents:
132ab5d1
Message:

Merge commit '50f19b7ee8e94570b5c63896736c4eb49cfa18db' into forwardport

Not all ints are converted to errno_t in xhci tree yet, however it compiles and works :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbdev/include/usb/dev/poll.h

    r132ab5d1 r5a6cc679  
    118118         * @return Whether to continue in polling.
    119119         */
    120         bool (*on_error)(usb_device_t *dev, int err_code, void *arg);
     120        bool (*on_error)(usb_device_t *dev, errno_t err_code, void *arg);
    121121
    122122
     
    139139} usb_polling_t;
    140140
    141 int usb_polling_init(usb_polling_t *);
     141errno_t usb_polling_init(usb_polling_t *);
    142142void usb_polling_fini(usb_polling_t *);
    143143
    144 int usb_polling_start(usb_polling_t *);
    145 int usb_polling_join(usb_polling_t *);
     144errno_t usb_polling_start(usb_polling_t *);
     145errno_t usb_polling_join(usb_polling_t *);
    146146
    147147#endif
Note: See TracChangeset for help on using the changeset viewer.