Changeset 83850 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Apr 20, 2020 11:35:14 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137379
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMDevHlp.cpp
r83283 r83850 3289 3289 3290 3290 /** @interface_method_impl{PDMDEVHLPR3,pfnIommuRegister} */ 3291 static DECLCALLBACK(int) pdmR3DevHlp_IommuRegister(PPDMDEVINS pDevIns, PPDMIOMMUREGR3 pIommuReg, PCPDMIOMMUHLPR3 *ppIommuHlp) 3291 static DECLCALLBACK(int) pdmR3DevHlp_IommuRegister(PPDMDEVINS pDevIns, PPDMIOMMUREGR3 pIommuReg, PCPDMIOMMUHLPR3 *ppIommuHlp, 3292 uint32_t *pidxIommu) 3292 3293 { 3293 3294 PDMDEV_ASSERT_DEVINS(pDevIns); … … 3333 3334 /* Set the helper pointer and return. */ 3334 3335 *ppIommuHlp = &g_pdmR3DevIommuHlp; 3336 if (pidxIommu) 3337 *pidxIommu = idxIommu; 3335 3338 LogFlow(("pdmR3DevHlp_IommuRegister: caller='%s'/%d: returns %Rrc\n", pDevIns->pReg->szName, pDevIns->iInstance, VINF_SUCCESS)); 3336 3339 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.