VirtualBox

Ignore:
Timestamp:
Mar 10, 2021 7:22:36 PM (4 years ago)
Author:
vboxsync
Message:

Backing out r143016 (doxygen fix) as it needs to be split up.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/PDMR0DevHlp.cpp

    r87926 r88075  
    15241524
    15251525/** @interface_method_impl{PDMIOAPICHLP,pfnIommuMsiRemap} */
    1526 static DECLCALLBACK(int) pdmR0IoApicHlp_IommuMsiRemap(PPDMDEVINS pDevIns, uint16_t idDevice, PCMSIMSG pMsiIn, PMSIMSG pMsiOut)
     1526static DECLCALLBACK(int) pdmR0IoApicHlp_IommuMsiRemap(PPDMDEVINS pDevIns, uint16_t uDeviceId, PCMSIMSG pMsiIn, PMSIMSG pMsiOut)
    15271527{
    15281528    PDMDEV_ASSERT_DEVINS(pDevIns);
     
    15311531
    15321532#ifdef VBOX_WITH_IOMMU_AMD
    1533     int rc = pdmIommuMsiRemap(pDevIns, idDevice, pMsiIn, pMsiOut);
     1533    int rc = pdmIommuMsiRemap(pDevIns, uDeviceId, pMsiIn, pMsiOut);
    15341534    if (RT_SUCCESS(rc) || rc != VERR_IOMMU_NOT_PRESENT)
    15351535        return rc;
    15361536#else
    1537     RT_NOREF(pDevIns, idDevice);
     1537    RT_NOREF(pDevIns, uDeviceId);
    15381538#endif
    15391539
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette