Changeset 3c4663e in mainline for uspace/lib/usbhost/src/iface.c


Ignore:
Timestamp:
2012-12-22T23:25:44Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
d8cdf39e
Parents:
1affef2f
Message:

libusbhost: Drop ddf_fun argument.

File:
1 edited

Legend:

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

    r1affef2f r3c4663e  
    231231    void *arg)
    232232{
    233         return hcd_send_batch(fun_to_hcd(fun), fun, target, USB_DIRECTION_IN,
     233        return hcd_send_batch(fun_to_hcd(fun), target, USB_DIRECTION_IN,
    234234            data, size, setup_data, callback, NULL, arg, "READ");
    235235}
     
    249249    usbhc_iface_transfer_out_callback_t callback, void *arg)
    250250{
    251         return hcd_send_batch(fun_to_hcd(fun), fun, target, USB_DIRECTION_OUT,
     251        return hcd_send_batch(fun_to_hcd(fun), target, USB_DIRECTION_OUT,
    252252            (uint8_t*)data, size, setup_data, NULL, callback, arg, "WRITE");
    253253}
Note: See TracChangeset for help on using the changeset viewer.