Changeset 00aece0 in mainline for uspace/drv/bus/usb/uhci/transfer_list.h
- Timestamp:
- 2012-02-18T16:47:38Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4449c6c
- Parents:
- bd5f3b7 (diff), f943dd3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhci/transfer_list.h
rbd5f3b7 r00aece0 36 36 37 37 #include <fibril_synch.h> 38 #include <usb/host/batch.h>39 38 40 39 #include "hw_struct/queue_head.h" 41 40 #include "uhci_batch.h" 42 41 /** Structure maintaining both hw queue and software list 43 42 * of currently executed transfers … … 46 45 /** Guard against multiple add/remove races */ 47 46 fibril_mutex_t guard; 48 /** UHCI hw structure represe ting this queue */47 /** UHCI hw structure representing this queue */ 49 48 qh_t *queue_head; 50 49 /** Assigned name, for nicer debug output */ … … 58 57 void transfer_list_set_next(transfer_list_t *instance, transfer_list_t *next); 59 58 void transfer_list_add_batch( 60 transfer_list_t *instance, u sb_transfer_batch_t *batch);59 transfer_list_t *instance, uhci_transfer_batch_t *batch); 61 60 void transfer_list_remove_finished(transfer_list_t *instance, list_t *done); 62 61 void transfer_list_abort_all(transfer_list_t *instance);
Note:
See TracChangeset
for help on using the changeset viewer.