Ignore:
File:
1 edited

Legend:

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

    r357a302 r563fb40  
    3939
    4040#include <usb_iface.h>
    41 #include <usb/ddfiface.h>
    4241#include <usb/usbdrv.h>
    4342#include <usb/descriptor.h>
     
    5150#include "usb/usb.h"
    5251
     52static int iface_get_hc_handle(device_t *device, devman_handle_t *handle)
     53{
     54        return usb_hc_find(device->handle, handle);
     55}
     56
     57static usb_iface_t hub_usb_iface = {
     58        .get_hc_handle = iface_get_hc_handle
     59};
     60
    5361static device_ops_t hub_device_ops = {
    54         .interfaces[USB_DEV_IFACE] = &usb_iface_hub_impl
     62        .interfaces[USB_DEV_IFACE] = &hub_usb_iface
    5563};
    5664
Note: See TracChangeset for help on using the changeset viewer.