Changes in uspace/drv/uhci-hcd/batch.h [17ceb72:5620bd4] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/batch.h
r17ceb72 r5620bd4 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 /** @addtogroup drvusbuhcihc28 /** @addtogroup usb 29 29 * @{ 30 30 */ 31 31 /** @file 32 * @brief UHCI driver USB transaction structure32 * @brief UHCI driver 33 33 */ 34 34 #ifndef DRV_UHCI_BATCH_H … … 50 50 usb_target_t target; 51 51 usb_transfer_type_t transfer_type; 52 usbhc_iface_transfer_in_callback_t callback_in; 53 usbhc_iface_transfer_out_callback_t callback_out; 52 union { 53 usbhc_iface_transfer_in_callback_t callback_in; 54 usbhc_iface_transfer_out_callback_t callback_out; 55 }; 54 56 void *arg; 55 57 char *transport_buffer; … … 63 65 int error; 64 66 ddf_fun_t *fun; 65 q h_t *qh;67 queue_head_t *qh; 66 68 td_t *tds; 67 69 void (*next_step)(struct batch*); … … 77 79 device_keeper_t *manager 78 80 ); 79 80 void batch_dispose(batch_t *instance);81 81 82 82 bool batch_is_complete(batch_t *instance);
Note:
See TracChangeset
for help on using the changeset viewer.