Changeset ee794529 in mainline for uspace/lib/usbhost/include/usb/host/bus.h
- Timestamp:
- 2017-10-22T16:38:19Z (6 years ago)
- Branches:
- lfn, master, serial
- Children:
- 89cefe78
- Parents:
- 4594baa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/bus.h
r4594baa ree794529 84 84 endpoint_t *(*create_endpoint)(bus_t *); 85 85 int (*register_endpoint)(bus_t *, endpoint_t *); 86 int (* release_endpoint)(bus_t *, endpoint_t *);86 int (*unregister_endpoint)(bus_t *, endpoint_t *); 87 87 endpoint_t *(*find_endpoint)(bus_t *, usb_target_t, usb_direction_t); 88 88 void (*destroy_endpoint)(endpoint_t *); /**< Optional */ … … 129 129 endpoint_t *bus_create_endpoint(bus_t *); 130 130 int bus_register_endpoint(bus_t *, endpoint_t *); 131 int bus_ release_endpoint(bus_t *, endpoint_t *);131 int bus_unregister_endpoint(bus_t *, endpoint_t *); 132 132 endpoint_t *bus_find_endpoint(bus_t *, usb_target_t, usb_direction_t); 133 133
Note: See TracChangeset
for help on using the changeset viewer.