Changeset 62f8025 in mainline
- Timestamp:
- 2017-10-28T22:47:06Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9620a54
- Parents:
- 6b2930b
- Location:
- uspace/drv/bus/usb/xhci
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/bus.c
r6b2930b r62f8025 439 439 /* Tear down TRB ring / PSA. */ 440 440 /* TODO: Make this method "noexcept" */ 441 /* FIXME: There is some memory corruption going on, causing this to crash. */ 442 /*if ((err = xhci_endpoint_free_transfer_ds(ep))) { 441 if ((err = xhci_endpoint_free_transfer_ds(ep))) { 443 442 usb_log_error("Failed to free resources of an endpoint."); 444 } */443 } 445 444 446 445 return EOK; -
uspace/drv/bus/usb/xhci/endpoint.c
r6b2930b r62f8025 203 203 int xhci_endpoint_free_transfer_ds(xhci_endpoint_t *xhci_ep) 204 204 { 205 /* FIXME: For some reason (possibly memory corruption), this crashes. */ 206 return EOK; 207 205 208 if (endpoint_using_streams(xhci_ep)) { 206 209 usb_log_debug2("Freeing primary stream context array for endpoint " XHCI_EP_FMT, XHCI_EP_ARGS(*xhci_ep));
Note:
See TracChangeset
for help on using the changeset viewer.