Changeset d15809b4 in mainline for uspace/drv/uhci-hcd/uhci.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/uhci.h
r0d36c20 rd15809b4 44 44 45 45 #include "transfer_list.h" 46 #include " tracker.h"46 #include "batch.h" 47 47 48 48 typedef struct uhci_regs { … … 81 81 link_pointer_t *frame_list; 82 82 83 link_t tracker_list;84 fibril_mutex_t tracker_list_mutex;83 link_t batch_list; 84 fibril_mutex_t batch_list_mutex; 85 85 86 86 transfer_list_t transfers_bulk_full; … … 113 113 void *arg ); 114 114 115 int uhci_schedule(uhci_t *instance, tracker_t *tracker);115 int uhci_schedule(uhci_t *instance, batch_t *batch); 116 116 117 117 static inline uhci_t * dev_to_uhci(device_t *dev)
Note:
See TracChangeset
for help on using the changeset viewer.