Ignore:
File:
1 edited

Legend:

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

    ra1cb170 r5203e256  
    11/*
    22 * Copyright (c) 2010 Vojtech Horky
    3  * Copyright (c) 2011 Jan Vesely
    43 * All rights reserved.
    54 *
     
    3938#include <usb/dev/driver.h>
    4039#include <usb/classes/classes.h>
    41 #include <usb/debug.h>
    4240
    4341#include "usbhub.h"
     42#include "usbhub_private.h"
    4443
    4544/** Hub status-change endpoint description.
     
    5756
    5857/**
    59  * USB hub driver operations
     58 * usb hub driver operations
    6059 *
    6160 * The most important one is add_device, which is set to usb_hub_add_device.
     
    6564};
    6665
    67 /** Hub endpoints, excluding control endpoint. */
     66/**
     67 * hub endpoints, excluding control endpoint
     68 */
    6869static usb_endpoint_description_t *usb_hub_endpoints[] = {
    6970        &hub_status_change_endpoint_description,
    70         NULL,
     71        NULL
    7172};
    72 /** Static usb hub driver information. */
     73
     74/**
     75 * static usb hub driver information
     76 */
    7377static usb_driver_t usb_hub_driver = {
    7478        .name = NAME,
     
    8185{
    8286        printf(NAME ": HelenOS USB hub driver.\n");
     87
    8388        usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
    8489
     
    8994 * @}
    9095 */
     96
Note: See TracChangeset for help on using the changeset viewer.