Changeset a157846 in mainline for uspace/lib/usbhost/src/hcd.c


Ignore:
Timestamp:
2015-06-28T16:36:19Z (9 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
fb1007ef
Parents:
ee1c2d9
Message:

usb: Fix EINPROGRESS compile failures

why the removal of EINPROGRESS was hidden in networking changes is beyond me

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhost/src/hcd.c

    ree1c2d9 ra157846  
    277277{
    278278        assert(hcd);
    279         sync_data_t sd = { .done = 0, .ret = EINPROGRESS, .size = size };
     279        sync_data_t sd = { .done = 0, .ret = EBUSY, .size = size };
    280280
    281281        const int ret = hcd_send_batch(hcd, target, dir, data, size, setup_data,
Note: See TracChangeset for help on using the changeset viewer.