Changeset 27873be in mainline
- Timestamp:
- 2011-08-25T11:15:42Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e2976bb
- Parents:
- b02308e
- Location:
- uspace/drv/bus/usb/uhci
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/batch.c
rb02308e r27873be 119 119 * Initializes parameters needed for the transfer and callback. 120 120 */ 121 int batch_init_ private(usb_transfer_batch_t *batch)121 int batch_init_uhci(usb_transfer_batch_t *batch) 122 122 { 123 123 #define CHECK_NULL_DISPOSE_RETURN(ptr, message...) \ -
uspace/drv/bus/usb/uhci/batch.h
rb02308e r27873be 39 39 #include "hw_struct/queue_head.h" 40 40 41 int batch_init_ private(usb_transfer_batch_t *batch);41 int batch_init_uhci(usb_transfer_batch_t *batch); 42 42 bool batch_is_complete(usb_transfer_batch_t *batch); 43 43 qh_t * batch_qh(usb_transfer_batch_t *batch); -
uspace/drv/bus/usb/uhci/hc.c
rb02308e r27873be 198 198 instance->generic.private_data = instance; 199 199 instance->generic.schedule = hc_schedule; 200 instance->generic.batch_init_hook = batch_init_ private;200 instance->generic.batch_init_hook = batch_init_uhci; 201 201 instance->generic.ep_add_hook = NULL; 202 202 #undef CHECK_RET_DEST_FUN_RETURN
Note:
See TracChangeset
for help on using the changeset viewer.