Changeset b0fc92c in mainline for uspace/lib/drv/include/usbhc_iface.h


Ignore:
Timestamp:
2013-07-26T13:29:05Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
059d507
Parents:
f3922c2
Message:

libusb, libdrv, libusbhost: Remove searching for dev handle by usb address

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/drv/include/usbhc_iface.h

    rf3922c2 rb0fc92c  
    4444#include <stdbool.h>
    4545
    46 int usbhc_get_handle(async_exch_t *, usb_address_t, devman_handle_t *);
    4746int usbhc_register_endpoint(async_exch_t *, usb_address_t, usb_endpoint_t,
    4847    usb_transfer_type_t, usb_direction_t, size_t, unsigned int);
     
    6261/** USB host controller communication interface. */
    6362typedef struct {
    64         int (*get_handle)(ddf_fun_t *, usb_address_t, devman_handle_t *);
    65 
    6663        int (*register_endpoint)(ddf_fun_t *, usb_address_t, usb_endpoint_t,
    6764            usb_transfer_type_t, usb_direction_t, size_t, unsigned int);
     
    7168        int (*read)(ddf_fun_t *, usb_target_t, uint64_t, uint8_t *, size_t,
    7269            usbhc_iface_transfer_in_callback_t, void *);
    73 
    7470        int (*write)(ddf_fun_t *, usb_target_t, uint64_t, const uint8_t *,
    7571            size_t, usbhc_iface_transfer_out_callback_t, void *);
Note: See TracChangeset for help on using the changeset viewer.