Changeset 129e6f1 in mainline


Ignore:
Timestamp:
2018-01-12T13:05:09Z (6 years ago)
Author:
Petr Manek <petr.manek@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a75f9cbc
Parents:
99a00a6
Message:

usbhost: add device_gone stub (seems non-optional)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usbhost/src/usb2_bus.c

    r99a00a6 r129e6f1  
    222222}
    223223
     224static void usb2_bus_device_gone(device_t *dev)
     225{
     226        // TODO: Implement me!
     227}
     228
    224229/**
    225230 * Register an endpoint to the bus. Reserves bandwidth.
     
    253258const bus_ops_t usb2_bus_ops = {
    254259        .device_enumerate = usb2_bus_device_enumerate,
     260        .device_gone = usb2_bus_device_gone,
    255261        .endpoint_register = usb2_bus_register_ep,
    256262        .endpoint_unregister = usb2_bus_unregister_ep,
Note: See TracChangeset for help on using the changeset viewer.