Ignore:
File:
1 edited

Legend:

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

    r205f0766 ra1cb170  
    5252
    5353/** Information about attached hub. */
    54 struct usb_hub_dev {
     54struct usb_hub_info_t {
    5555        /** Number of ports. */
    5656        size_t port_count;
    57         /** Port structures, one for each port */
     57
     58        /** Attached device handles, for each port one */
    5859        usb_hub_port_t *ports;
     60
    5961        /** Connection to hcd */
    6062        usb_hc_connection_t connection;
     63
    6164        /** Generic usb device data*/
    6265        usb_device_t *usb_device;
     
    7376        /** Condition variable for pending_ops_count. */
    7477        fibril_condvar_t pending_ops_cv;
    75         /** Pointer to devman usbhub function. */
    76         ddf_fun_t *hub_fun;
    77         /** Status indicator */
    78         bool running;
    7978};
    8079
    81 int usb_hub_device_add(usb_device_t *usb_dev);
    82 int usb_hub_device_gone(usb_device_t *usb_dev);
     80int usb_hub_add_device(usb_device_t *usb_dev);
    8381
    8482bool hub_port_changes_callback(usb_device_t *dev,
Note: See TracChangeset for help on using the changeset viewer.