Changes in uspace/drv/uhci-hcd/uhci.h [83c439c:6cd7b17] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci.h
r83c439c r6cd7b17 44 44 45 45 #include "transfer_list.h" 46 #include " batch.h"46 #include "tracker.h" 47 47 48 48 typedef struct uhci_regs { … … 72 72 73 73 #define UHCI_FRAME_LIST_COUNT 1024 74 #define UHCI_CLEANER_TIMEOUT 1000 00074 #define UHCI_CLEANER_TIMEOUT 1000 75 75 #define UHCI_DEBUGER_TIMEOUT 5000000 76 76 … … 81 81 link_pointer_t *frame_list; 82 82 83 link_t batch_list;84 fibril_mutex_t batch_list_mutex;83 link_t tracker_list; 84 fibril_mutex_t tracker_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, batch_t *batch);115 int uhci_schedule(uhci_t *instance, tracker_t *tracker); 116 116 117 117 static inline uhci_t * dev_to_uhci(device_t *dev)
Note:
See TracChangeset
for help on using the changeset viewer.