Changeset 940f576 in mainline for uspace/drv/bus/usb/usbhub/usbhub.c


Ignore:
Timestamp:
2011-10-12T18:54:05Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
196fbb0
Parents:
51f033ce
Message:

usbhub: Add device_gone skeleton

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbhub/usbhub.c

    r51f033ce r940f576  
    7575static void usb_hub_polling_terminated_callback(usb_device_t *device,
    7676    bool was_error, void *data);
    77 
     77/**
     78 * Initialize hub device driver fibril
     79 *
     80 * Creates hub representation and fibril that periodically checks hub's status.
     81 * Hub representation is passed to the fibril.
     82 * @param usb_dev generic usb device information
     83 * @return error code
     84 */
     85int usb_hub_device_gone(usb_device_t *usb_dev)
     86{
     87        return ENOTSUP;
     88}
     89/*----------------------------------------------------------------------------*/
    7890/**
    7991 * Initialize hub device driver fibril
Note: See TracChangeset for help on using the changeset viewer.