Changeset 9f6cb910 in mainline for uspace/drv/bus/usb/uhci/main.c


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

uhci: Add uhci_ prefix to driver interface functions.

File:
1 edited

Legend:

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

    r4bfcf22 r9f6cb910  
    5959        const int ret =  hc_init(instance, res, irq);
    6060        if (ret == EOK)
    61                 hcd_set_implementation(hcd, instance, hc_schedule, NULL, NULL,
    62                     hc_interrupt, hc_status);
     61                hcd_set_implementation(hcd, instance, uhci_hc_schedule, NULL,
     62                    NULL, uhci_hc_interrupt, uhci_hc_status);
    6363        return ret;
    6464}
     
    127127        ret = ddf_hcd_device_setup_all(device, USB_SPEED_FULL,
    128128            BANDWIDTH_AVAILABLE_USB11, bandwidth_count_usb11,
    129             ddf_hcd_gen_irq_handler, hc_gen_irq_code,
     129            ddf_hcd_gen_irq_handler, uhci_hc_gen_irq_code,
    130130            uhci_driver_init, uhci_driver_fini);
    131131        if (ret != EOK) {
Note: See TracChangeset for help on using the changeset viewer.