Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/include/usb/pipes.h

    re936e8e ra6add7a  
    4141#include <usb/descriptor.h>
    4242#include <ipc/devman.h>
    43 #include <driver.h>
     43#include <ddf/driver.h>
    4444
    45 /**
    46  * Abstraction of a physical connection to the device.
     45/** Abstraction of a physical connection to the device.
    4746 * This type is an abstraction of the USB wire that connects the host and
    4847 * the function (device).
     
    5554} usb_device_connection_t;
    5655
    57 /**
    58  * Abstraction of a logical connection to USB device endpoint.
     56/** Abstraction of a logical connection to USB device endpoint.
    5957 * It encapsulates endpoint attributes (transfer type etc.) as well
    6058 * as information about currently running sessions.
     
    111109        /** Found descriptor fitting the description. */
    112110        usb_standard_endpoint_descriptor_t *descriptor;
    113         /** Interface the endpoint belongs to. */
     111        /** Interface descriptor the endpoint belongs to. */
    114112        usb_standard_interface_descriptor_t *interface;
    115113        /** Whether the endpoint was actually found. */
     
    120118    usb_device_connection_t *, usb_hc_connection_t *);
    121119int usb_device_connection_initialize_from_device(usb_device_connection_t *,
    122     device_t *);
     120    ddf_dev_t *);
    123121int usb_device_connection_initialize(usb_device_connection_t *,
    124122    devman_handle_t, usb_address_t);
    125123
    126 int usb_device_get_assigned_interface(device_t *);
     124int usb_device_get_assigned_interface(ddf_dev_t *);
    127125
    128126int usb_endpoint_pipe_initialize(usb_endpoint_pipe_t *,
Note: See TracChangeset for help on using the changeset viewer.