Changeset d81ef61c in mainline for uspace/drv/usbhub/usbhub.h


Ignore:
Timestamp:
2011-02-18T14:24:55Z (14 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
50ba203
Parents:
fe1776c2
Message:

uncompilable changes, partially applying pipe api

File:
1 edited

Legend:

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

    rfe1776c2 rd81ef61c  
    4040#include "usb/hcdhubd.h"
    4141
     42#include <usb/pipes.h>
     43
    4244/** basic information about device attached to hub */
    4345typedef struct{
     
    4648}usb_hub_attached_device_t;
    4749
     50/* Hub endpoints. */
     51typedef struct {
     52        usb_endpoint_pipe_t control;
     53        usb_endpoint_pipe_t status_change;
     54} usb_hub_endpoints_t;
     55
     56
     57
    4858/** Information about attached hub. */
    4959typedef struct {
    5060        /** Number of ports. */
    5161        int port_count;
    52         /** attached device handles */
     62        /** attached device handles, for each port one */
    5363        usb_hub_attached_device_t * attached_devs;
    5464        /** General usb device info. */
     
    5666        /** General device info*/
    5767        device_t * device;
     68        /** connection to hcd */
     69        usb_device_connection_t connection;
     70        /** hub endpoints */
     71        usb_hub_endpoints_t endpoints;
    5872
    5973} usb_hub_info_t;
Note: See TracChangeset for help on using the changeset viewer.