Changeset 4046c1ea in mainline for uspace/drv/uhci/uhci.c


Ignore:
Timestamp:
2011-01-29T00:14:07Z (14 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1431e8f
Parents:
b3258ad (diff), 44d8853 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge parent branch

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci/uhci.c

    rb3258ad r4046c1ea  
    175175        assert(instance);
    176176
     177        uhci_print_verbose("Appending a new transfer to queue.\n");
    177178        ret = transfer_list_append(&instance->transfers[transfer_type], td);
    178179        CHECK_RET_TRANS_FREE_JOB_TD("Failed to append transfer descriptor.\n");
     
    227228                uint16_t reg;
    228229                reg = pio_read_16(&instance->registers->usbcmd);
    229                 uhci_print_verbose("Command register: %X\n", reg);
     230                uhci_print_info("Command register: %X\n", reg);
    230231
    231232                reg = pio_read_16(&instance->registers->usbsts);
    232                 uhci_print_verbose("Status register: %X (%s,%s,%s,%s,%s,%s)\n",
     233                uhci_print_info("Status register: %X (%s,%s,%s,%s,%s,%s)\n",
    233234                    reg,
    234235                    UHCI_GET_STR_FLAG(reg, UHCI_STATUS_HALTED, "halted", "-"),
Note: See TracChangeset for help on using the changeset viewer.