Changeset 80982 in vbox for trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
- Timestamp:
- Sep 24, 2019 3:39:10 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 133575
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r80963 r80982 103 103 104 104 105 // See 7.2.2. PCI Express Enhanced Configuration Mechanism for details of address 106 // mapping, we take n=6 approach 107 DECLINLINE(void) ich9pciPhysToPciAddr(PDEVPCIROOT pPciRoot, RTGCPHYS GCPhysAddr, PciAddress* pPciAddr) 105 /** 106 * See 7.2.2. PCI Express Enhanced Configuration Mechanism for details of address 107 * mapping, we take n=6 approach 108 */ 109 DECLINLINE(void) ich9pciPhysToPciAddr(PDEVPCIROOT pPciRoot, RTGCPHYS GCPhysAddr, PciAddress *pPciAddr) 108 110 { 109 111 NOREF(pPciRoot); … … 114 116 } 115 117 116 DECLINLINE(void) ich9pciStateToPciAddr(PDEVPCIROOT pPciRoot, RTGCPHYS addr, PciAddress *pPciAddr)118 DECLINLINE(void) ich9pciStateToPciAddr(PDEVPCIROOT pPciRoot, RTGCPHYS addr, PciAddress *pPciAddr) 117 119 { 118 120 pPciAddr->iBus = (pPciRoot->uConfigReg >> 16) & 0xff;
Note:
See TracChangeset
for help on using the changeset viewer.