Changeset 87926 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Mar 2, 2021 10:01:02 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143016
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/PDMR0DevHlp.cpp
r87766 r87926 1524 1524 1525 1525 /** @interface_method_impl{PDMIOAPICHLP,pfnIommuMsiRemap} */ 1526 static DECLCALLBACK(int) pdmR0IoApicHlp_IommuMsiRemap(PPDMDEVINS pDevIns, uint16_t uDeviceId, PCMSIMSG pMsiIn, PMSIMSG pMsiOut)1526 static DECLCALLBACK(int) pdmR0IoApicHlp_IommuMsiRemap(PPDMDEVINS pDevIns, uint16_t idDevice, PCMSIMSG pMsiIn, PMSIMSG pMsiOut) 1527 1527 { 1528 1528 PDMDEV_ASSERT_DEVINS(pDevIns); … … 1531 1531 1532 1532 #ifdef VBOX_WITH_IOMMU_AMD 1533 int rc = pdmIommuMsiRemap(pDevIns, uDeviceId, pMsiIn, pMsiOut);1533 int rc = pdmIommuMsiRemap(pDevIns, idDevice, pMsiIn, pMsiOut); 1534 1534 if (RT_SUCCESS(rc) || rc != VERR_IOMMU_NOT_PRESENT) 1535 1535 return rc; 1536 1536 #else 1537 RT_NOREF(pDevIns, uDeviceId);1537 RT_NOREF(pDevIns, idDevice); 1538 1538 #endif 1539 1539
Note:
See TracChangeset
for help on using the changeset viewer.