Changeset 0a5833d7 in mainline
- Timestamp:
- 2017-10-12T23:05:00Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e6b9182
- Parents:
- 0e3e1f6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/bus.c
r0e3e1f6 r0a5833d7 105 105 return ENOMEM; 106 106 107 hashed_ep->endpoint = (xhci_endpoint_t *) ep;107 hashed_ep->endpoint = xhci_endpoint_get(ep); 108 108 hash_table_insert(&bus->endpoints, &hashed_ep->link); 109 109 … … 137 137 return NULL; 138 138 139 return (endpoint_t *) hashed_ep->endpoint;139 return &hashed_ep->endpoint->base; 140 140 } 141 141
Note:
See TracChangeset
for help on using the changeset viewer.