Changeset e6b9182 in mainline for uspace/drv/bus/usb/xhci/hc.c
- Timestamp:
- 2017-10-13T08:49:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 741bcdeb
- Parents:
- 0a5833d7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/hc.c
r0a5833d7 re6b9182 216 216 goto err_cmd; 217 217 218 return EOK; 219 218 if ((err = xhci_bus_init(&hc->bus))) 219 goto err_rh; 220 221 222 return EOK; 223 224 err_rh: 225 xhci_rh_fini(&hc->rh); 220 226 err_cmd: 221 227 xhci_fini_commands(hc); … … 610 616 void hc_fini(xhci_hc_t *hc) 611 617 { 618 xhci_bus_fini(&hc->bus); 612 619 xhci_trb_ring_fini(&hc->command_ring); 613 620 xhci_event_ring_fini(&hc->event_ring);
Note:
See TracChangeset
for help on using the changeset viewer.