Changes in uspace/lib/usbhost/include/usb/host/endpoint.h [4e732f1a:3e6a98c5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/endpoint.h
r4e732f1a r3e6a98c5 57 57 /** Maximum size of data packets. */ 58 58 size_t max_packet_size; 59 /** Additional opportunities per uframe */60 unsigned packets;61 59 /** Necessary bandwidth. */ 62 60 size_t bandwidth; … … 69 67 /** Signals change of active status. */ 70 68 fibril_condvar_t avail; 71 /** High speed TT data */72 struct {73 usb_address_t address;74 unsigned port;75 } tt;76 69 /** Optional device specific data. */ 77 70 struct { … … 87 80 endpoint_t * endpoint_create(usb_address_t address, usb_endpoint_t endpoint, 88 81 usb_direction_t direction, usb_transfer_type_t type, usb_speed_t speed, 89 size_t max_packet_size, unsigned packets, size_t bw, 90 usb_address_t tt_address, unsigned tt_port); 82 size_t max_packet_size, size_t bw); 91 83 void endpoint_destroy(endpoint_t *instance); 92 84
Note:
See TracChangeset
for help on using the changeset viewer.