Changeset e0df6c2 in mainline for uspace/drv/uhci-hcd/transfer_list.h
- Timestamp:
- 2011-02-12T03:04:40Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 67b6fc5
- Parents:
- d6115e5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/transfer_list.h
rd6115e5 re0df6c2 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 40 … … 41 43 typedef struct transfer_list 42 44 { 45 fibril_mutex_t guard; 43 46 queue_head_t *queue_head; 44 47 uint32_t queue_head_pa; … … 51 54 52 55 void transfer_list_set_next(transfer_list_t *instance, transfer_list_t *next); 53 54 56 55 57 static inline void transfer_list_fini(transfer_list_t *instance)
Note:
See TracChangeset
for help on using the changeset viewer.