Changeset 5d4193c in mainline for uspace/drv/uhci-hcd/transfer_list.h
- Timestamp:
- 2011-02-11T12:06:05Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 03197ffc, fe1776c2
- Parents:
- 960ff451 (diff), f96aefc (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/uhci-hcd/transfer_list.h
r960ff451 r5d4193c 36 36 37 37 #include "uhci_struct/queue_head.h" 38 #include " uhci_struct/transfer_descriptor.h"38 #include "tracker.h" 39 39 40 40 typedef struct transfer_list 41 41 { 42 tra nsfer_descriptor_t *first;43 transfer_descriptor_t *last; 42 tracker_t *last_tracker; 43 44 44 queue_head_t *queue_head; 45 45 uint32_t queue_head_pa; … … 58 58 } 59 59 60 int transfer_list_append( 61 transfer_list_t *instance, transfer_descriptor_t *transfer);60 61 void transfer_list_add_tracker(transfer_list_t *instance, tracker_t *tracker); 62 62 63 63 #endif
Note:
See TracChangeset
for help on using the changeset viewer.