Changeset 65538 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Jan 31, 2017 12:30:03 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r65532 r65538 1929 1929 * respectively. 1930 1930 */ 1931 uint32_t uSupports64Bit = fUse64Bit ? 0x f: 0x0;1931 uint32_t uSupports64Bit = fUse64Bit ? 0x1 : 0x0; 1932 1932 ich9pciBiosInitWriteConfig(pPciRoot, uBus, uDevFn, VBOX_PCI_PREF_BASE_UPPER32, uBase >> 32, 4); 1933 1933 ich9pciBiosInitWriteConfig(pPciRoot, uBus, uDevFn, VBOX_PCI_PREF_MEMORY_BASE, ((uint32_t)(uBase >> 16) & UINT32_C(0xfff0)) | uSupports64Bit, 2); … … 2851 2851 devpciR3InfoIndent(pHlp, iIndentLvl); 2852 2852 pHlp->pfnPrintf(pHlp, "%02x:%02x.%d: bridge topology: primary=%d secondary=%d subordinate=%d\n", 2853 uPrimary, pBusSub->PciDev.uDevFn >> 3, pBusSub->PciDev.uDevFn & 7, 2853 uPrimary, pBusSub->PciDev.uDevFn >> 3, pBusSub->PciDev.uDevFn & 7, 2854 2854 uPrimary, uSecondary, uSubordinate); 2855 2855 if ( uPrimary != PDMPciDevGetByte(&pBusSub->PciDev, VBOX_PCI_PRIMARY_BUS)
Note:
See TracChangeset
for help on using the changeset viewer.