Ignore:
Timestamp:
2013-01-04T16:49:53Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0e97b4b5
Parents:
daf199f
Message:

libusbhost: Add host side device initialization.

Add new roothub initialization functions (the old one is going away).
change usb device names created by host controller to be less awkward.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhost/include/usb/host/hcd.h

    rdaf199f r237df2f  
    8888int hcd_reserve_default_address(hcd_t *hcd, usb_speed_t speed);
    8989
    90 static inline int hcd_release_default_address(hcd_t *hcd, usb_address_t address)
     90static inline int hcd_release_default_address(hcd_t *hcd)
    9191{
    9292        return hcd_release_address(hcd, USB_ADDRESS_DEFAULT);
     
    103103    usbhc_iface_transfer_out_callback_t out, void *arg, const char* name);
    104104
     105ssize_t hcd_send_batch_sync(hcd_t *hcd, usb_target_t target,
     106    usb_direction_t dir, void *data, size_t size, uint64_t setup_data,
     107    const char* name);
     108
    105109#endif
    106110/**
Note: See TracChangeset for help on using the changeset viewer.