VirtualBox

Changeset 83241 in vbox


Ignore:
Timestamp:
Mar 10, 2020 10:37:44 AM (5 years ago)
Author:
vboxsync
Message:

Devices/Bus/DevIommuAmd: bugref:9654 bits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Bus/DevIommuAmd.cpp

    r83237 r83241  
    818818# ifdef IN_RING3
    819819/**
     820 * @interface_method_impl{PDMDEVREG,pfnReset}
     821 */
     822static DECLCALLBACK(void) iommuR3Reset(PPDMDEVINS pDevIns)
     823{
     824    NOREF(pDevIns);
     825}
     826
     827
     828/**
    820829 * @interface_method_impl{PDMDEVREG,pfnDestruct}
    821830 */
    822831static DECLCALLBACK(int) iommuR3Destruct(PPDMDEVINS pDevIns)
    823832{
     833    NOREF(pDevIns);
    824834    return VINF_SUCCESS;
    825835}
     
    831841static DECLCALLBACK(int) iommuR3Construct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg)
    832842{
     843    NOREF(iInstance);
     844    NOREF(pCfg);
     845
    833846    PDMDEV_CHECK_VERSIONS_RETURN(pDevIns);
     847#if 0
    834848    PIOMMU          pThis   = PDMDEVINS_2_DATA(pDevIns, PIOMMU);
    835849    PIOMMUCC        pThisCC = PDMDEVINS_2_DATA_CC(pDevIns, PIOMMUCC);
     
    842856     */
    843857    //PDMDEV_VALIDATE_CONFIG_RETURN(pDevIns, "", "");
     858#endif
    844859    return VINF_SUCCESS;
    845860}
     
    886901    /* .pfnPowerOn = */             NULL,
    887902    /* .pfnReset = */               iommuR3Reset,
    888     /* .pfnSuspend = */             iommuR3Suspend,
     903    /* .pfnSuspend = */             NULL,
    889904    /* .pfnResume = */              NULL,
    890     /* .pfnAttach = */              iommuR3Attach,
    891     /* .pfnDetach = */              iommuR3Detach,
     905    /* .pfnAttach = */              NULL,
     906    /* .pfnDetach = */              NULL,
    892907    /* .pfnQueryInterface = */      NULL,
    893908    /* .pfnInitComplete = */        NULL,
    894     /* .pfnPowerOff = */            iommuR3PowerOff,
     909    /* .pfnPowerOff = */            NULL,
    895910    /* .pfnSoftReset = */           NULL,
    896911    /* .pfnReserved0 = */           NULL,
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