Changeset 4c74ac3 in mainline for uspace/drv/usbhub/usbhub.h


Ignore:
Timestamp:
2010-12-12T14:46:13Z (13 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
16ecc28
Parents:
b666608
Message:

usb hub driver almost complete

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/usbhub/usbhub.h

    rb666608 r4c74ac3  
    5353} usb_hub_info_t;
    5454
    55 int usb_add_hub_device(device_t *);
     55/**
     56 * function running the hub-controlling loop.
     57 * @param noparam fundtion does not need any parameters
     58 */
     59int usb_hub_control_loop(void * noparam);
     60
     61/** Callback when new hub device is detected.
     62 *
     63 * @param dev New device.
     64 * @return Error code.
     65 */
     66int usb_add_hub_device(device_t *dev);
     67
     68/**
     69 * check changes on all registered hubs
     70 */
     71void usb_hub_check_hub_changes(void);
     72
     73
     74//int usb_add_hub_device(device_t *);
     75
     76
    5677
    5778#endif
Note: See TracChangeset for help on using the changeset viewer.