Changeset ee794529 in mainline for uspace/lib/usbhost/src/bus.c
- Timestamp:
- 2017-10-22T16:38:19Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 89cefe78
- Parents:
- 4594baa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/src/bus.c
r4594baa ree794529 106 106 return ENOENT; 107 107 108 return bus_ release_endpoint(bus, ep);108 return bus_unregister_endpoint(bus, ep); 109 109 } 110 110 … … 180 180 } 181 181 182 int bus_ release_endpoint(bus_t *bus, endpoint_t *ep)182 int bus_unregister_endpoint(bus_t *bus, endpoint_t *ep) 183 183 { 184 184 assert(bus); … … 186 186 187 187 fibril_mutex_lock(&bus->guard); 188 const int r = bus->ops. release_endpoint(bus, ep);188 const int r = bus->ops.unregister_endpoint(bus, ep); 189 189 fibril_mutex_unlock(&bus->guard); 190 190
Note:
See TracChangeset
for help on using the changeset viewer.