Changeset 17ceb72 in mainline for uspace/drv/uhci-hcd/transfer_list.h
- Timestamp:
- 2011-03-14T01:39:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6298d80
- Parents:
- 3bd96bb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/transfer_list.h
r3bd96bb r17ceb72 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 /** @addtogroup usb28 /** @addtogroup drvusbuhcihc 29 29 * @{ 30 30 */ 31 31 /** @file 32 * @brief UHCI driver 32 * @brief UHCI driver transfer list structure 33 33 */ 34 34 #ifndef DRV_UHCI_TRANSFER_LIST_H … … 50 50 } transfer_list_t; 51 51 52 int transfer_list_init(transfer_list_t *instance, const char *name); 53 54 void transfer_list_set_next(transfer_list_t *instance, transfer_list_t *next); 55 52 /** Dispose transfer list structures. 53 * 54 * @param[in] instance Memory place to use. 55 * 56 * Frees memory for internal qh_t structure. 57 */ 56 58 static inline void transfer_list_fini(transfer_list_t *instance) 57 59 { … … 59 61 free32(instance->queue_head); 60 62 } 63 64 int transfer_list_init(transfer_list_t *instance, const char *name); 65 66 void transfer_list_set_next(transfer_list_t *instance, transfer_list_t *next); 67 61 68 void transfer_list_remove_finished(transfer_list_t *instance); 62 69
Note:
See TracChangeset
for help on using the changeset viewer.