Changeset 2cb6571 in mainline for uspace/lib/usb/src/hcdhubd_private.h


Ignore:
Timestamp:
2010-12-03T15:49:30Z (13 years ago)
Author:
smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
36c410e, 54b141a
Parents:
1dd264b (diff), 4144630 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge with smekideki

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/src/hcdhubd_private.h

    r1dd264b r2cb6571  
    4848int usb_add_hub_device(device_t *);
    4949
     50/** lowest allowed usb address */
     51extern int usb_lowest_address;
     52
     53/** highest allowed usb address */
     54extern int usb_highest_address;
     55
     56/**
     57 * @brief initialize address list of given hcd
     58 *
     59 * This function should be used only for hcd initialization.
     60 * It creates interval list of free addresses, thus it is initialized as
     61 * list with one interval with whole address space. Using an address shrinks
     62 * the interval, freeing an address extends an interval or creates a
     63 * new one.
     64 *
     65 * @param hcd
     66 * @return
     67 */
     68void  usb_create_address_list(usb_hc_device_t * hcd);
     69
     70
     71
     72
     73
     74
    5075#endif
    5176/**
Note: See TracChangeset for help on using the changeset viewer.