Ignore:
File:
1 edited

Legend:

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

    r4125b7d rfbefd0e  
    3939#include <usb/debug.h>
    4040
     41#include "iface.h"
    4142#include "uhci.h"
    4243
     
    6162int uhci_add_device(ddf_dev_t *device)
    6263{
    63         usb_log_debug2("uhci_add_device() called\n");
     64        usb_log_debug("uhci_add_device() called\n");
    6465        assert(device);
    65 
    6666        uhci_t *uhci = malloc(sizeof(uhci_t));
    6767        if (uhci == NULL) {
     
    7878        device->driver_data = uhci;
    7979
    80         usb_log_info("Controlling new UHCI device '%s'.\n", device->name);
     80        usb_log_info("Controlling new UHCI device `%s'.\n", device->name);
    8181
    8282        return EOK;
     
    8585/** Initialize global driver structures (NONE).
    8686 *
    87  * @param[in] argc Number of arguments in argv vector (ignored).
     87 * @param[in] argc Nmber of arguments in argv vector (ignored).
    8888 * @param[in] argv Cmdline argument vector (ignored).
    8989 * @return Error code.
     
    9494{
    9595        printf(NAME ": HelenOS UHCI driver.\n");
     96
     97        sleep(3); /* TODO: remove in final version */
    9698        usb_log_enable(USB_LOG_LEVEL_DEFAULT, NAME);
    9799
Note: See TracChangeset for help on using the changeset viewer.