Changeset 0c224b2 in mainline for uspace/lib/usbhost/src/batch.c


Ignore:
Timestamp:
2011-07-12T10:32:21Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7d5708d
Parents:
2fe28ca1
Message:

OHCI: Revert revision 1122.

usb_transfer_batch_t relies on its internal error value,
do not change it unless explicitly requested.

File:
1 edited

Legend:

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

    r2fe28ca1 r0c224b2  
    105105 *
    106106 */
    107 void usb_transfer_batch_finish_error(usb_transfer_batch_t *instance, int error)
     107void usb_transfer_batch_finish(usb_transfer_batch_t *instance)
    108108{
    109109        assert(instance);
    110110        assert(instance->ep);
    111111        assert(instance->next_step);
    112         instance->error = error;
    113112        endpoint_release(instance->ep);
    114113        instance->next_step(instance);
Note: See TracChangeset for help on using the changeset viewer.