VirtualBox

Ignore:
Timestamp:
Jan 4, 2017 5:08:38 PM (8 years ago)
Author:
vboxsync
Message:

HostDrivers/VBoxPci: doxygen fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/VBoxPci/VBoxPci.c

    r62490 r65117  
    278278                                             uint64_t       u64RegionSize,
    279279                                             int32_t        fFlags,
    280                                              RTR0PTR        *pRegionBase)
    281 {
    282     PVBOXRAWPCIINS pThis = DEVPORT_2_VBOXRAWPCIINS(pPort);
    283     int            rc;
    284 
    285     vboxPciDevLock(pThis);
    286 
    287     rc = vboxPciOsDevMapRegion(pThis, iRegion, RegionStart, u64RegionSize, fFlags, pRegionBase);
     280                                             RTR0PTR        *pRegionBaseR0)
     281{
     282    PVBOXRAWPCIINS pThis = DEVPORT_2_VBOXRAWPCIINS(pPort);
     283    int            rc;
     284
     285    vboxPciDevLock(pThis);
     286
     287    rc = vboxPciOsDevMapRegion(pThis, iRegion, RegionStart, u64RegionSize, fFlags, pRegionBaseR0);
    288288
    289289    vboxPciDevUnlock(pThis);
     
    444444 * @returns VBox status code.
    445445 * @param   pGlobals            The globals.
    446  * @param   pszName             The instance name.
     446 * @param   u32HostAddress      Host address.
     447 * @param   fFlags              Flags.
     448 * @param   pVmCtx              VM context.
    447449 * @param   ppDevPort           Where to store the pointer to our port interface.
     450 * @param   pfDevFlags          The device flags.
    448451 */
    449452static int vboxPciNewInstance(PVBOXRAWPCIGLOBALS pGlobals,
     
    600603static DECLCALLBACK(void)  vboxPciFactoryDeinitVm(PRAWPCIFACTORY       pFactory,
    601604                                                  PVM                  pVM,
    602                                                   PRAWPCIPERVM         pPciData)
    603 {
    604     if (pPciData->pDriverData)
    605     {
    606         PVBOXRAWPCIDRVVM pThis = (PVBOXRAWPCIDRVVM)pPciData->pDriverData;
     605                                                  PRAWPCIPERVM         pVmData)
     606{
     607    if (pVmData->pDriverData)
     608    {
     609        PVBOXRAWPCIDRVVM pThis = (PVBOXRAWPCIDRVVM)pVmData->pDriverData;
    607610
    608611#ifdef VBOX_WITH_IOMMU
     
    619622
    620623        RTMemFree(pThis);
    621         pPciData->pDriverData = NULL;
     624        pVmData->pDriverData = NULL;
    622625    }
    623626}
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