Changeset 22324 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Aug 18, 2009 1:57:58 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DevAHCI.cpp
r22124 r22324 1392 1392 1393 1393 pAhciPort->regFBU = u32Value; 1394 pAhciPort->GCPhysAddrFb |= ((RTGCPHYS)pAhciPort->regFBU) << 32;1394 pAhciPort->GCPhysAddrFb = AHCI_RTGCPHYS_FROM_U32(pAhciPort->regFBU, pAhciPort->regFB); 1395 1395 1396 1396 return VINF_SUCCESS; … … 1415 1415 1416 1416 pAhciPort->regFB = (u32Value & AHCI_PORT_FB_RESERVED); 1417 pAhciPort->GCPhysAddrFb |= pAhciPort->regFB;1417 pAhciPort->GCPhysAddrFb = AHCI_RTGCPHYS_FROM_U32(pAhciPort->regFBU, pAhciPort->regFB); 1418 1418 1419 1419 return VINF_SUCCESS; … … 1428 1428 1429 1429 pAhciPort->regCLBU = u32Value; 1430 pAhciPort->GCPhysAddrClb |= ((RTGCPHYS)pAhciPort->regCLBU) << 32;1430 pAhciPort->GCPhysAddrClb = AHCI_RTGCPHYS_FROM_U32(pAhciPort->regCLBU, pAhciPort->regCLB); 1431 1431 1432 1432 return VINF_SUCCESS; … … 1461 1461 1462 1462 pAhciPort->regCLB = (u32Value & AHCI_PORT_CLB_RESERVED); 1463 pAhciPort->GCPhysAddrClb |= pAhciPort->regCLB;1463 pAhciPort->GCPhysAddrClb = AHCI_RTGCPHYS_FROM_U32(pAhciPort->regCLBU, pAhciPort->regCLB); 1464 1464 1465 1465 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.