Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-hcd/main.c

    r17ceb72 r9351353  
    2626 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2727 */
    28 /** @addtogroup drvusbuhcihc
     28/** @addtogroup usb
    2929 * @{
    3030 */
    3131/** @file
    32  * @brief UHCI driver initialization
     32 * @brief UHCI driver
    3333 */
    3434#include <ddf/driver.h>
     
    5555};
    5656/*----------------------------------------------------------------------------*/
    57 /** Initialize a new ddf driver instance for uhci hc and hub.
     57/** Initializes a new ddf driver instance for uhci hc and hub.
    5858 *
    5959 * @param[in] device DDF instance of the device to initialize.
    6060 * @return Error code.
     61 *
     62 * Gets and initialies hardware resources, disables any legacy support,
     63 * and reports root hub device.
    6164 */
    6265int uhci_add_device(ddf_dev_t *device)
     
    7982}
    8083/*----------------------------------------------------------------------------*/
    81 /** Initialize global driver structures (NONE).
     84/** Initializes global driver structures (NONE).
    8285 *
    8386 * @param[in] argc Nmber of arguments in argv vector (ignored).
     
    8992int main(int argc, char *argv[])
    9093{
    91         sleep(3); /* TODO: remove in final version */
     94        sleep(3);
    9295        usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME);
    9396
Note: See TracChangeset for help on using the changeset viewer.