Ignore:
Timestamp:
2013-09-21T00:43:24Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
4cf5b8e0
Parents:
3f03199
Message:

usb: Move HC driver implementation functions to a separate structure.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/ohci_endpoint.c

    r3f03199 r9348862  
    9090        endpoint_set_hc_data(
    9191            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);
    9393        return EOK;
    9494}
     
    104104        assert(ep);
    105105        ohci_endpoint_t *instance = ohci_endpoint_get(ep);
    106         hc_dequeue_endpoint(hcd->private_data, ep);
     106        hc_dequeue_endpoint(hcd->driver.data, ep);
    107107        if (instance) {
    108108                free32(instance->ed);
Note: See TracChangeset for help on using the changeset viewer.