Changeset 983e135 in mainline for uspace/drv/bus/usb/usbhub/usbhub.h
- Timestamp:
- 2011-09-19T13:31:23Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5b6f8dd
- Parents:
- d46b13d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbhub/usbhub.h
rd46b13d r983e135 77 77 * searched again and again for the 'right pipe'. 78 78 */ 79 usb_pipe_t * 79 usb_pipe_t *status_change_pipe; 80 80 81 /** convenience pointer to control pipe81 /** Convenience pointer to control pipe 82 82 * 83 83 * Control pipe is initialized in usb_device structure. This is 84 * pointer into th is structure, so that it does not have to be85 * search edagain and again for the 'right pipe'.84 * pointer into that structure, so that we don't not have to 85 * search again and again for the 'right pipe'. 86 86 */ 87 usb_pipe_t * 87 usb_pipe_t *control_pipe; 88 88 89 /** generic usb device data*/90 usb_device_t * 89 /** Generic usb device data*/ 90 usb_device_t *usb_device; 91 91 92 92 /** Number of pending operations on the mutex to prevent shooting … … 101 101 /** Condition variable for pending_ops_count. */ 102 102 fibril_condvar_t pending_ops_cv; 103 104 103 }; 105 104
Note:
See TracChangeset
for help on using the changeset viewer.