Changeset 93635 in vbox for trunk/src/VBox/VMM/VMMR3/IOMR3Mmio.cpp
- Timestamp:
- Feb 7, 2022 10:43:45 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/IOMR3Mmio.cpp
r93554 r93635 399 399 ASMAtomicWriteU64(&pRegEntry->GCPhysMapping, GCPhys); 400 400 rc = PGMR3PhysMMIORegister(pVM, GCPhys, cbRegion, pVM->iom.s.hNewMmioHandlerType, 401 (void *)(uintptr_t)hRegion, hRegion,hRegion, pRegEntry->pszDesc);401 hRegion, pRegEntry->pszDesc); 402 402 AssertRCReturnStmt(rc, ASMAtomicWriteU64(&pRegEntry->GCPhysMapping, NIL_RTGCPHYS); IOM_UNLOCK_EXCL(pVM), rc); 403 403 … … 418 418 ASMAtomicWriteU64(&pRegEntry->GCPhysMapping, GCPhys); 419 419 rc = PGMR3PhysMMIORegister(pVM, GCPhys, cbRegion, pVM->iom.s.hNewMmioHandlerType, 420 (void *)(uintptr_t)hRegion, hRegion,hRegion, pRegEntry->pszDesc);420 hRegion, pRegEntry->pszDesc); 421 421 AssertRCReturnStmt(rc, ASMAtomicWriteU64(&pRegEntry->GCPhysMapping, NIL_RTGCPHYS); IOM_UNLOCK_EXCL(pVM), rc); 422 422 … … 444 444 /* First entry in the lookup table: */ 445 445 ASMAtomicWriteU64(&pRegEntry->GCPhysMapping, GCPhys); 446 rc = PGMR3PhysMMIORegister(pVM, GCPhys, cbRegion, pVM->iom.s.hNewMmioHandlerType, 447 (void *)(uintptr_t)hRegion, hRegion, hRegion, pRegEntry->pszDesc); 446 rc = PGMR3PhysMMIORegister(pVM, GCPhys, cbRegion, pVM->iom.s.hNewMmioHandlerType, hRegion, pRegEntry->pszDesc); 448 447 AssertRCReturnStmt(rc, ASMAtomicWriteU64(&pRegEntry->GCPhysMapping, NIL_RTGCPHYS); IOM_UNLOCK_EXCL(pVM), rc); 449 448
Note:
See TracChangeset
for help on using the changeset viewer.