Changeset fccf289 in mainline for uspace/drv/bus/usb/ohci/main.c


Ignore:
Timestamp:
2014-01-18T22:36:24Z (11 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c9e954c
Parents:
9f6cb910
Message:

ohci: Add ohci_ prefix to driver interface functions.

File:
1 edited

Legend:

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

    r9f6cb910 rfccf289  
    5858        const int ret =  hc_init(instance, res, irq);
    5959        if (ret == EOK)
    60                 hcd_set_implementation(hcd, instance, hc_schedule,
    61                     ohci_endpoint_init, ohci_endpoint_fini, hc_interrupt,
    62                     hc_status);
     60                hcd_set_implementation(hcd, instance, ohci_hc_schedule,
     61                    ohci_endpoint_init, ohci_endpoint_fini, ohci_hc_interrupt,
     62                    ohci_hc_status);
    6363        return ret;
    6464}
     
    8686        const int ret = ddf_hcd_device_setup_all(device, USB_SPEED_FULL,
    8787            BANDWIDTH_AVAILABLE_USB11, bandwidth_count_usb11,
    88             ddf_hcd_gen_irq_handler, hc_gen_irq_code,
     88            ddf_hcd_gen_irq_handler, ohci_hc_gen_irq_code,
    8989            ohci_driver_init, ohci_driver_fini);
    9090        if (ret != EOK) {
Note: See TracChangeset for help on using the changeset viewer.