Changeset 0f3e68c in mainline for uspace/drv/uhci-hcd/uhci.c


Ignore:
Timestamp:
2011-03-12T22:36:33Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
335382d
Parents:
dd6f59f (diff), 67352d2 (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:

Minor fixes and refactoring

File:
1 edited

Legend:

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

    rdd6f59f r0f3e68c  
    436436
    437437                int frnum = pio_read_16(&instance->registers->frnum) & 0x3ff;
    438                 usb_log_debug2("Framelist item: %d \n", frnum );
    439438
    440439                uintptr_t expected_pa = instance->frame_list[frnum] & (~0xf);
    441440                uintptr_t real_pa = addr_to_phys(QH(interrupt));
    442441                if (expected_pa != real_pa) {
    443                         usb_log_debug("Interrupt QH: %p vs. %p.\n",
    444                             expected_pa, real_pa);
     442                        usb_log_debug("Interrupt QH: %p(frame: %d) vs. %p.\n",
     443                            expected_pa, frnum, real_pa);
    445444                }
    446445
Note: See TracChangeset for help on using the changeset viewer.