Changeset 82073 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Nov 21, 2019 10:57:54 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Bus/DevPciIch9.cpp
r81765 r82073 2738 2738 { 2739 2739 /* The callout is optional with new style devices: */ 2740 if (pRegion->pfnMap) 2740 if (!pRegion->pfnMap) 2741 rc = VINF_SUCCESS; 2742 else 2741 2743 { 2742 2744 rc = pRegion->pfnMap(pPciDev->Int.s.pDevInsR3, pPciDev, iRegion, … … 2746 2748 2747 2749 /* We do the mapping for new-style devices: */ 2748 if (pRegion->hHandle != UINT64_MAX )2750 if (pRegion->hHandle != UINT64_MAX && rc != VINF_PCI_MAPPING_DONE) 2749 2751 { 2750 2752 switch (pRegion->fFlags & PDMPCIDEV_IORGN_F_HANDLE_MASK)
Note:
See TracChangeset
for help on using the changeset viewer.