Changeset 67352d2 in mainline for uspace/drv/uhci-hcd/uhci.c
- Timestamp:
- 2011-03-12T22:35:30Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0f3e68c, eb0dc58
- Parents:
- 7f810b3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci.c
r7f810b3 r67352d2 436 436 437 437 int frnum = pio_read_16(&instance->registers->frnum) & 0x3ff; 438 usb_log_debug2("Framelist item: %d \n", frnum );439 438 440 439 uintptr_t expected_pa = instance->frame_list[frnum] & (~0xf); 441 440 uintptr_t real_pa = addr_to_phys(QH(interrupt)); 442 441 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); 445 444 } 446 445
Note:
See TracChangeset
for help on using the changeset viewer.