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


Ignore:
Timestamp:
2014-01-18T17:14:42Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3e200736
Parents:
19b3cc6
Message:

libusbhost: Add status hook.

Implement in UHCI, OHCI

File:
1 edited

Legend:

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

    r19b3cc6 re26a9d95  
    6666        if (ret == EOK)
    6767                hcd_set_implementation(hcd, instance, hc_schedule,
    68                     ohci_endpoint_init, ohci_endpoint_fini, ohci_interrupt);
     68                    ohci_endpoint_init, ohci_endpoint_fini, ohci_interrupt,
     69                    hc_status);
    6970        return ret;
    7071}
     
    7778
    7879        free(hcd->driver.data);
    79         hcd_set_implementation(hcd, NULL, NULL, NULL, NULL, NULL);
     80        hcd_set_implementation(hcd, NULL, NULL, NULL, NULL, NULL, NULL);
    8081}
    8182
Note: See TracChangeset for help on using the changeset viewer.