Changeset afcd86e in mainline for uspace/drv/uhci-hcd/transfer_list.c


Ignore:
Timestamp:
2011-02-01T22:19:15Z (14 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c56dbe0
Parents:
7ce0fe3
Message:

Driver uhci-hcd uses unified debug log

File:
1 edited

Legend:

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

    r7ce0fe3 rafcd86e  
    11#include <errno.h>
     2
     3#include <usb/debug.h>
    24
    35#include "transfer_list.h"
     
    1012        instance->queue_head = malloc32(sizeof(queue_head_t));
    1113        if (!instance->queue_head) {
    12                 uhci_print_error("Failed to allocate queue head.\n");
     14                usb_log_error("Failed to allocate queue head.\n");
    1315                return ENOMEM;
    1416        }
     
    4648                instance->queue_head->element = (pa & LINK_POINTER_ADDRESS_MASK);
    4749        }
    48         uhci_print_verbose("Successfully added transfer to the hc queue %p.\n",
     50        usb_log_debug("Successfully added transfer to the hc queue %p.\n",
    4951          instance);
    5052        return EOK;
Note: See TracChangeset for help on using the changeset viewer.