Changeset c9e954c in mainline for uspace/drv/bus/usb/ehci/main.c


Ignore:
Timestamp:
2014-01-18T22:37:06Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
615abda
Parents:
fccf289
Message:

ehci: Add ehci_ prefix to driver interface functions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ehci/main.c

    rfccf289 rc9e954c  
    5959        const int ret = hc_init(instance, res, irq);
    6060        if (ret == EOK)
    61                 hcd_set_implementation(hcd, instance, hc_schedule,
    62                     NULL, NULL, hc_interrupt, NULL);
     61                hcd_set_implementation(hcd, instance, ehci_hc_schedule,
     62                    NULL, NULL, ehci_hc_interrupt, ehci_hc_status);
    6363        return ret;
    6464}
     
    9898        const int ret = ddf_hcd_device_setup_all(device, USB_SPEED_HIGH,
    9999            BANDWIDTH_AVAILABLE_USB20, bandwidth_count_usb11,
    100             ddf_hcd_gen_irq_handler, hc_gen_irq_code,
     100            ddf_hcd_gen_irq_handler, ehci_hc_gen_irq_code,
    101101            ehci_driver_init, ehci_driver_fini);
    102102        if (ret != EOK) {
Note: See TracChangeset for help on using the changeset viewer.