Changeset 904b1bc in mainline for uspace/drv/bus/usb/xhci/commands.h
- Timestamp:
- 2018-05-22T10:36:58Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a4eb3ba2
- Parents:
- 4f8772d4
- git-author:
- Jiri Svoboda <jiri@…> (2018-05-21 17:36:30)
- git-committer:
- Jiri Svoboda <jiri@…> (2018-05-22 10:36:58)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/commands.h
r4f8772d4 r904b1bc 79 79 xhci_trb_ring_t trb_ring; 80 80 81 fibril_mutex_t guard; /**< Guard access to this structure. */ 81 /** Guard access to this structure. */ 82 fibril_mutex_t guard; 82 83 list_t cmd_list; 83 84 84 xhci_cr_state_t state; /**< Whether commands are allowed to be 85 added. */ 86 fibril_condvar_t state_cv; /**< For waiting on CR state change. */ 85 /** Whether commands are allowed to be added. */ 86 xhci_cr_state_t state; 87 /** For waiting on CR state change. */ 88 fibril_condvar_t state_cv; 87 89 88 fibril_condvar_t stopped_cv; /**< For waiting on CR stopped event. */ 90 /** For waiting on CR stopped event. */ 91 fibril_condvar_t stopped_cv; 89 92 } xhci_cmd_ring_t; 90 93 … … 108 111 109 112 /** Below are arguments of all commands mixed together. 110 * Be sure to know which command accepts what arguments. */ 113 * Be sure to know which command accepts what arguments. 114 */ 111 115 112 116 uint32_t slot_id;
Note:
See TracChangeset
for help on using the changeset viewer.