Changeset da7c0a9 in mainline for uspace/drv/usbhub/usbhub.h
- Timestamp:
- 2011-02-20T22:51:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b476347
- Parents:
- 063ead6f (diff), d37b235 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/usbhub.h
r063ead6f rda7c0a9 42 42 #define NAME "usbhub" 43 43 44 /** basic information about device attached to hub */ 45 typedef struct{ 46 usb_address_t address; 47 devman_handle_t devman_handle; 48 }usb_hub_attached_device_t; 44 //#include "usb/hcdhubd.h" 45 #include <usb/usbdrv.h> 46 #include <usb/hub.h> 47 48 #include <usb/pipes.h> 49 50 /* Hub endpoints. */ 51 typedef struct { 52 usb_endpoint_pipe_t control; 53 usb_endpoint_pipe_t status_change; 54 } usb_hub_endpoints_t; 55 56 49 57 50 58 /** Information about attached hub. */ … … 52 60 /** Number of ports. */ 53 61 int port_count; 54 /** attached device handles */55 usb_h ub_attached_device_t * attached_devs;56 /** USB address of the hub. */57 usb_address_t address;62 /** attached device handles, for each port one */ 63 usb_hc_attached_device_t * attached_devs; 64 /** General usb device info. */ 65 //usb_hcd_attached_device_info_t * usb_device; 58 66 /** General device info*/ 59 67 device_t * device; 68 /** connection to hcd */ 69 //usb_device_connection_t connection; 70 usb_hc_connection_t connection; 71 /** */ 72 usb_device_connection_t device_connection; 73 /** hub endpoints */ 74 usb_hub_endpoints_t endpoints; 60 75 } usb_hub_info_t; 61 76
Note:
See TracChangeset
for help on using the changeset viewer.