Changeset 45305 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Apr 3, 2013 11:15:02 AM (12 years ago)
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPCI.cpp
r45025 r45305 1840 1840 { 1841 1841 unsigned i; 1842 uint8_t elcr[2] = {0, 0};1842 uint8_t elcr[2] = {0, 0}; 1843 1843 PPCIGLOBALS pGlobals = PDMINS_2_DATA(pDevIns, PPCIGLOBALS); 1844 PVM pVM = PDMDevHlpGetVM(pDevIns);1845 Assert(pVM);1844 PVM pVM = PDMDevHlpGetVM(pDevIns); Assert(pVM); 1845 PVMCPU pVCpu = PDMDevHlpGetVMCPU(pDevIns); Assert(pVM); 1846 1846 1847 1847 /* … … 1865 1865 1866 1866 /* Tell to the PIC. */ 1867 VBOXSTRICTRC rcStrict = IOMIOPortWrite(pVM, 0x4d0, elcr[0], sizeof(uint8_t));1867 VBOXSTRICTRC rcStrict = IOMIOPortWrite(pVM, pVCpu, 0x4d0, elcr[0], sizeof(uint8_t)); 1868 1868 if (rcStrict == VINF_SUCCESS) 1869 rcStrict = IOMIOPortWrite(pVM, 0x4d1, elcr[1], sizeof(uint8_t));1869 rcStrict = IOMIOPortWrite(pVM, pVCpu, 0x4d1, elcr[1], sizeof(uint8_t)); 1870 1870 if (rcStrict != VINF_SUCCESS) 1871 1871 { -
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r45055 r45305 1215 1215 /** @todo only allow read access (doesn't work now) */ 1216 1216 STAM_COUNTER_INC(&pThis->StatMapPage); 1217 IOMMMIOMapMMIO2Page(PDMDevHlpGetVM(pThis->CTX_SUFF(pDevIns)), GCPhys, pThis->GCPhysVRAM + addr, X86_PTE_RW|X86_PTE_P); 1217 IOMMMIOMapMMIO2Page(PDMDevHlpGetVM(pThis->CTX_SUFF(pDevIns)), GCPhys, 1218 pThis->GCPhysVRAM + addr, X86_PTE_RW | X86_PTE_P); 1218 1219 /* Set as dirty as write accesses won't be noticed now. */ 1219 1220 vga_set_dirty(pThis, addr); … … 1297 1298 { 1298 1299 STAM_COUNTER_INC(&pThis->StatMapPage); 1299 IOMMMIOMapMMIO2Page(PDMDevHlpGetVM(pThis->CTX_SUFF(pDevIns)), GCPhys, pThis->GCPhysVRAM + addr, X86_PTE_RW | X86_PTE_P); 1300 IOMMMIOMapMMIO2Page(PDMDevHlpGetVM(pThis->CTX_SUFF(pDevIns)), GCPhys, 1301 pThis->GCPhysVRAM + addr, X86_PTE_RW | X86_PTE_P); 1300 1302 pThis->fRemappedVGA = true; 1301 1303 }
Note:
See TracChangeset
for help on using the changeset viewer.