Changes in uspace/drv/uhci-hcd/uhci.h [83c439c:733a9a8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci.h
r83c439c r733a9a8 66 66 67 67 uint16_t usbintr; 68 #define UHCI_INTR_SHORT_PACKET (1 << 3) 69 #define UHCI_INTR_COMPLETE (1 << 2) 70 #define UHCI_INTR_RESUME (1 << 1) 71 #define UHCI_INTR_CRC (1 << 0) 72 68 73 uint16_t frnum; 69 74 uint32_t flbaseadd; … … 72 77 73 78 #define UHCI_FRAME_LIST_COUNT 1024 74 #define UHCI_CLEANER_TIMEOUT 10000 0079 #define UHCI_CLEANER_TIMEOUT 10000 75 80 #define UHCI_DEBUGER_TIMEOUT 5000000 76 81 … … 80 85 81 86 link_pointer_t *frame_list; 82 83 link_t batch_list;84 fibril_mutex_t batch_list_mutex;85 87 86 88 transfer_list_t transfers_bulk_full; … … 115 117 int uhci_schedule(uhci_t *instance, batch_t *batch); 116 118 119 void uhci_interrupt(uhci_t *instance, uint16_t status); 120 117 121 static inline uhci_t * dev_to_uhci(device_t *dev) 118 122 { return (uhci_t*)dev->driver_data; }
Note:
See TracChangeset
for help on using the changeset viewer.