Changeset 6bb83c7 in mainline for uspace/drv/usbhub/usbhub.h


Ignore:
Timestamp:
2011-02-20T21:33:03Z (14 years ago)
Author:
Matus Dekanek <smekideki@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
070f11e, 62066b4
Parents:
50ba203
Message:

usbhub uses new api, it is compilable. cannot guarantee functionality

File:
1 edited

Legend:

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

    r50ba203 r6bb83c7  
    4242#define NAME "usbhub"
    4343
    44 <<<<<<< TREE
    45 #include "usb/hcdhubd.h"
     44//#include "usb/hcdhubd.h"
     45#include <usb/usbdrv.h>
     46#include <usb/hub.h>
    4647
    4748#include <usb/pipes.h>
    48 
    49 =======
    50 >>>>>>> MERGE-SOURCE
    51 /** basic information about device attached to hub */
    52 typedef struct{
    53         usb_address_t address;
    54         devman_handle_t devman_handle;
    55 }usb_hub_attached_device_t;
    5649
    5750/* Hub endpoints. */
     
    6861        int port_count;
    6962        /** attached device handles, for each port one */
    70         usb_hub_attached_device_t * attached_devs;
    71         /** USB address of the hub. */
    72         usb_address_t address;
     63        usb_hc_attached_device_t * attached_devs;
     64        /** General usb device info. */
     65        //usb_hcd_attached_device_info_t * usb_device;
    7366        /** General device info*/
    7467        device_t * device;
    75 <<<<<<< TREE
    7668        /** connection to hcd */
    77         usb_device_connection_t connection;
     69        //usb_device_connection_t connection;
     70        usb_hc_connection_t connection;
     71        /** */
     72        usb_device_connection_t device_connection;
    7873        /** hub endpoints */
    7974        usb_hub_endpoints_t endpoints;
    80 
    81 =======
    82 >>>>>>> MERGE-SOURCE
    8375} usb_hub_info_t;
    8476
Note: See TracChangeset for help on using the changeset viewer.