Changeset 9348862 in mainline for uspace/drv/bus/usb/ohci/ohci_endpoint.c
- Timestamp:
- 2013-09-21T00:43:24Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4cf5b8e0
- Parents:
- 3f03199
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/ohci_endpoint.c
r3f03199 r9348862 90 90 endpoint_set_hc_data( 91 91 ep, ohci_ep, ohci_ep_toggle_get, ohci_ep_toggle_set); 92 hc_enqueue_endpoint(hcd-> private_data, ep);92 hc_enqueue_endpoint(hcd->driver.data, ep); 93 93 return EOK; 94 94 } … … 104 104 assert(ep); 105 105 ohci_endpoint_t *instance = ohci_endpoint_get(ep); 106 hc_dequeue_endpoint(hcd-> private_data, ep);106 hc_dequeue_endpoint(hcd->driver.data, ep); 107 107 if (instance) { 108 108 free32(instance->ed);
Note:
See TracChangeset
for help on using the changeset viewer.