Changeset cf2ccd4 in mainline for uspace/drv/uhci-hcd/hc.c
- Timestamp:
- 2011-04-22T09:26:50Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7304663
- Parents:
- 1553cbf (diff), 1775ebc (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified uspace/drv/uhci-hcd/hc.c ¶
r1553cbf rcf2ccd4 101 101 ret, io, str_error(ret)); 102 102 instance->registers = io; 103 usb_log_debug("Device registers at %p (%u) accessible.\n",103 usb_log_debug("Device registers at %p (%zuB) accessible.\n", 104 104 io, reg_size); 105 105 … … 330 330 { 331 331 assert(instance); 332 //status |= 1; //Uncomment to work around qemu hang332 status |= 1; //Uncomment to work around qemu hang 333 333 /* Lower 2 bits are transaction error and transaction complete */ 334 334 if (status & (UHCI_STATUS_INTERRUPT | UHCI_STATUS_ERROR_INTERRUPT)) { … … 423 423 if (frame_list != addr_to_phys(instance->frame_list)) { 424 424 usb_log_debug("Framelist address: %p vs. %p.\n", 425 frame_list, addr_to_phys(instance->frame_list)); 425 (void *) frame_list, 426 (void *) addr_to_phys(instance->frame_list)); 426 427 } 427 428 … … 432 433 uintptr_t real_pa = addr_to_phys(QH(interrupt)); 433 434 if (expected_pa != real_pa) { 434 usb_log_debug("Interrupt QH: %p (frame:%d) vs. %p.\n",435 expected_pa, frnum,real_pa);435 usb_log_debug("Interrupt QH: %p (frame %d) vs. %p.\n", 436 (void *) expected_pa, frnum, (void *) real_pa); 436 437 } 437 438 … … 440 441 if (expected_pa != real_pa) { 441 442 usb_log_debug("Control Slow QH: %p vs. %p.\n", 442 expected_pa,real_pa);443 (void *) expected_pa, (void *) real_pa); 443 444 } 444 445 … … 447 448 if (expected_pa != real_pa) { 448 449 usb_log_debug("Control Full QH: %p vs. %p.\n", 449 expected_pa,real_pa);450 (void *) expected_pa, (void *) real_pa); 450 451 } 451 452 … … 454 455 if (expected_pa != real_pa ) { 455 456 usb_log_debug("Bulk QH: %p vs. %p.\n", 456 expected_pa,real_pa);457 (void *) expected_pa, (void *) real_pa); 457 458 } 458 459 async_usleep(UHCI_DEBUGER_TIMEOUT);
Note:
See TracChangeset
for help on using the changeset viewer.