Ignore:
File:
1 edited

Legend:

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

    r9f685aa re98e5fc  
    4848static const usb_driver_ops_t usb_hub_driver_ops = {
    4949        .device_add = usb_hub_device_add,
    50         .device_remove = usb_hub_device_remove,
     50//      .device_rem = usb_hub_device_remove,
    5151        .device_gone = usb_hub_device_gone,
    5252};
    5353
     54/** Hub endpoints, excluding control endpoint. */
     55static const usb_endpoint_description_t *usb_hub_endpoints[] = {
     56        &hub_status_change_endpoint_description,
     57        NULL,
     58};
    5459/** Static usb hub driver information. */
    5560static const usb_driver_t usb_hub_driver = {
Note: See TracChangeset for help on using the changeset viewer.