Changeset ee28ae66 in mainline
- Timestamp:
- 2017-08-20T17:51:44Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8b415cc
- Parents:
- d271f78
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
rd271f78 ree28ae66 218 218 219 219 if ((err = xhci_init_commands(hc))) 220 goto err_ event_ring;220 goto err_scratch; 221 221 222 222 if ((err = xhci_rh_init(&hc->rh))) 223 goto err_ rh;224 225 return EOK; 226 227 err_ rh:223 goto err_cmd; 224 225 return EOK; 226 227 err_cmd: 228 228 xhci_fini_commands(hc); 229 err_scratch: 230 xhci_scratchpad_free(hc); 229 231 err_event_ring: 230 232 xhci_event_ring_fini(&hc->event_ring);
Note:
See TracChangeset
for help on using the changeset viewer.