Changeset 88580 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Apr 19, 2021 3:52:45 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 143878
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevMiscHlp.cpp
r88567 r88580 291 291 292 292 293 /** @interface_method_impl{PDMIOMMUHLPR3,pfnSendMsi} */ 294 static DECLCALLBACK(int) pdmR3IommuHlp_SendMsi(PPDMDEVINS pDevIns, PCMSIMSG pMsi, uint32_t uTagSrc) 295 { 296 PDMDEV_ASSERT_DEVINS(pDevIns); 297 LogFlowFunc(("caller='%s'/%d:\n", pDevIns->pReg->szName, pDevIns->iInstance)); 298 return PDMIoApicSendMsi(pDevIns->Internal.s.pVMR3, NIL_PCIBDF, pMsi, uTagSrc); 299 } 300 301 293 302 /** 294 303 * IOMMU Device Helpers. … … 300 309 pdmR3IommuHlp_Unlock, 301 310 pdmR3IommuHlp_LockIsOwner, 311 pdmR3IommuHlp_SendMsi, 302 312 PDM_IOMMUHLPR3_VERSION /* the end */ 303 313 };
Note:
See TracChangeset
for help on using the changeset viewer.