Changeset d15809b4 in mainline for uspace/drv/uhci-hcd/transfer_list.h
- Timestamp:
- 2011-02-14T10:14:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 962ce100
- Parents:
- 0d36c20 (diff), 45c01a1 (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
r0d36c20 rd15809b4 35 35 #define DRV_UHCI_TRANSFER_LIST_H 36 36 37 #include <fibril_synch.h> 38 37 39 #include "uhci_struct/queue_head.h" 38 #include "tracker.h" 40 41 #include "batch.h" 39 42 40 43 typedef struct transfer_list 41 44 { 42 tracker_t *last_tracker; 43 45 fibril_mutex_t guard; 44 46 queue_head_t *queue_head; 45 47 uint32_t queue_head_pa; 46 48 struct transfer_list *next; 47 49 const char *name; 50 link_t batch_list; 48 51 } transfer_list_t; 49 52 … … 57 60 queue_head_dispose(instance->queue_head); 58 61 } 62 void transfer_list_check(transfer_list_t *instance); 59 63 60 61 void transfer_list_add_tracker(transfer_list_t *instance, tracker_t *tracker); 62 64 void transfer_list_add_batch(transfer_list_t *instance, batch_t *batch); 63 65 #endif 64 66 /**
Note:
See TracChangeset
for help on using the changeset viewer.