Changeset ee794529 in mainline for uspace/drv/bus/usb/ehci/ehci_bus.c
- 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/drv/bus/usb/ehci/ehci_bus.c
r4594baa ree794529 129 129 } 130 130 131 static int ehci_ release_ep(bus_t *bus_base, endpoint_t *ep)131 static int ehci_unregister_ep(bus_t *bus_base, endpoint_t *ep) 132 132 { 133 133 ehci_bus_t *bus = (ehci_bus_t *) bus_base; … … 135 135 assert(ep); 136 136 137 const int err = bus->parent_ops. release_endpoint(bus_base, ep);137 const int err = bus->parent_ops.unregister_endpoint(bus_base, ep); 138 138 if (err) 139 139 return err; … … 170 170 171 171 ops->register_endpoint = ehci_register_ep; 172 ops-> release_endpoint = ehci_release_ep;172 ops->unregister_endpoint = ehci_unregister_ep; 173 173 174 174 ops->create_batch = ehci_bus_create_batch;
Note: See TracChangeset
for help on using the changeset viewer.