Changeset 44686 in vbox
- Timestamp:
- Feb 14, 2013 12:26:08 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83782
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevIoApic.cpp
r44685 r44686 327 327 } 328 328 329 Log(("ioapic: IOWIN rd -> %#010x (%Rrc)\n", *pu32Value, rc)); 329 330 return rc; 330 331 } … … 427 428 rc = ioapic_IoRegSel_r(pThis, (uint32_t *)pv); 428 429 else if (offReg == 0x10) 429 rc = ioapic_Io RegSel_r(pThis, (uint32_t *)pv);430 rc = ioapic_IoWin_r(pThis, (uint32_t *)pv); 430 431 else 431 432 { … … 433 434 rc = VINF_IOM_MMIO_UNUSED_FF; 434 435 } 436 Log3(("ioapicMMIORead: @%#x -> %#x %Rrc\n", offReg, *(uint32_t *)pv, rc)); 435 437 436 438 IOAPIC_UNLOCK(pThis); … … 472 474 rc = VINF_SUCCESS; 473 475 } 476 Log3(("ioapicMMIOWrite: @%#x := %#x %Rrc\n", offReg, u32Value, rc)); 474 477 475 478 IOAPIC_UNLOCK(pThis);
Note:
See TracChangeset
for help on using the changeset viewer.