Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/usbhub/port.h

    r58563585 r96323d2  
    2727 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2828 */
    29 
    3029/** @addtogroup drvusbhub
    3130 * @{
     
    3433 * Hub ports related functions.
    3534 */
    36 
    3735#ifndef DRV_USBHUB_PORT_H
    3836#define DRV_USBHUB_PORT_H
     
    4745typedef struct {
    4846        /** Port number as reported in descriptors. */
    49         unsigned int port_number;
     47        unsigned port_number;
    5048        /** Device communication pipe. */
    5149        usb_pipe_t *control_pipe;
     
    7169 * @param port Port to be initialized.
    7270 */
    73 static inline void usb_hub_port_init(usb_hub_port_t *port,
    74     unsigned int port_number, usb_pipe_t *control_pipe)
     71static inline void usb_hub_port_init(usb_hub_port_t *port, unsigned port_number,
     72    usb_pipe_t *control_pipe)
    7573{
    7674        assert(port);
     
    8280        fibril_condvar_initialize(&port->reset_cv);
    8381}
    84 
    8582int usb_hub_port_fini(usb_hub_port_t *port, usb_hub_dev_t *hub);
    8683int usb_hub_port_clear_feature(
     
    9289
    9390#endif
    94 
    9591/**
    9692 * @}
Note: See TracChangeset for help on using the changeset viewer.