Changeset 6626bba9 in mainline for uspace/drv/bus/usb/usbhub/usbhub.h
- Timestamp:
- 2011-10-12T19:04:00Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 205f0766
- Parents:
- 196fbb0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/usbhub.h
r196fbb0 r6626bba9 52 52 53 53 /** Information about attached hub. */ 54 struct usb_hub_ info{54 struct usb_hub_dev { 55 55 /** Number of ports. */ 56 56 size_t port_count; 57 58 /** Attached device handles, for each port one */ 57 /** Port structures, one for each port */ 59 58 usb_hub_port_t *ports; 60 61 59 /** Connection to hcd */ 62 60 usb_hc_connection_t connection; 63 64 61 /** Generic usb device data*/ 65 62 usb_device_t *usb_device; … … 76 73 /** Condition variable for pending_ops_count. */ 77 74 fibril_condvar_t pending_ops_cv; 75 /** Pointer to devman usbhub function. */ 78 76 ddf_fun_t *hub_fun; 79 77 };
Note:
See TracChangeset
for help on using the changeset viewer.