Changes in uspace/drv/bus/usb/usbhub/usbhub.h [205f0766:a1cb170] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/usbhub.h
r205f0766 ra1cb170 52 52 53 53 /** Information about attached hub. */ 54 struct usb_hub_ dev{54 struct usb_hub_info_t { 55 55 /** Number of ports. */ 56 56 size_t port_count; 57 /** Port structures, one for each port */ 57 58 /** Attached device handles, for each port one */ 58 59 usb_hub_port_t *ports; 60 59 61 /** Connection to hcd */ 60 62 usb_hc_connection_t connection; 63 61 64 /** Generic usb device data*/ 62 65 usb_device_t *usb_device; … … 73 76 /** Condition variable for pending_ops_count. */ 74 77 fibril_condvar_t pending_ops_cv; 75 /** Pointer to devman usbhub function. */76 ddf_fun_t *hub_fun;77 /** Status indicator */78 bool running;79 78 }; 80 79 81 int usb_hub_device_add(usb_device_t *usb_dev); 82 int usb_hub_device_gone(usb_device_t *usb_dev); 80 int usb_hub_add_device(usb_device_t *usb_dev); 83 81 84 82 bool hub_port_changes_callback(usb_device_t *dev,
Note:
See TracChangeset
for help on using the changeset viewer.