VirtualBox

Changeset 67058 in vbox


Ignore:
Timestamp:
May 24, 2017 10:33:41 AM (8 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
115711
Message:

Audio/DevHDA: Renaming.

Location:
trunk/src/VBox/Devices
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DevHDA.cpp

    r65741 r67058  
    796796    R3PTRTYPE(PHDASTATE)               pHDAState;
    797797    /** Driver flags. */
    798     PDMAUDIODRVFLAGS                   Flags;
     798    PDMAUDIODRVFLAGS                   fFlags;
    799799    uint8_t                            u32Padding0[2];
    800800    /** LUN to which this driver has been assigned. */
     
    29332933
    29342934            if (   RT_FAILURE(rc2)
    2935                 && (pDrv->Flags & PDMAUDIODRVFLAGS_PRIMARY)) /* We only care about primary drivers here, the rest may fail. */
     2935                && (pDrv->fFlags & PDMAUDIODRVFLAGS_PRIMARY)) /* We only care about primary drivers here, the rest may fail. */
    29362936            {
    29372937                if (RT_SUCCESS(rc))
     
    59935993             */
    59945994            if (pDrv->uLUN == 0)
    5995                 pDrv->Flags |= PDMAUDIODRVFLAGS_PRIMARY;
    5996 
    5997             LogFunc(("LUN#%u: pCon=%p, drvFlags=0x%x\n", uLUN, pDrv->pConnector, pDrv->Flags));
     5995                pDrv->fFlags |= PDMAUDIODRVFLAGS_PRIMARY;
     5996
     5997            LogFunc(("LUN#%u: pCon=%p, drvFlags=0x%x\n", uLUN, pDrv->pConnector, pDrv->fFlags));
    59985998
    59995999            /* Attach to driver list if not attached yet. */
     
    64016401             * might not worth showing an own error message box in the GUI.
    64026402             */
    6403             if (!(pDrv->Flags & PDMAUDIODRVFLAGS_PRIMARY))
     6403            if (!(pDrv->fFlags & PDMAUDIODRVFLAGS_PRIMARY))
    64046404                continue;
    64056405
     
    66096609            /* Only register primary driver.
    66106610             * The device emulation does the output multiplexing then. */
    6611             if (pDrv->Flags != PDMAUDIODRVFLAGS_PRIMARY)
     6611            if (pDrv->fFlags != PDMAUDIODRVFLAGS_PRIMARY)
    66126612                continue;
    66136613
  • trunk/src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp

    r65960 r67058  
    18111811    GEN_CHECK_OFF(HDADRIVER, Node);
    18121812    GEN_CHECK_OFF(HDADRIVER, pHDAState);
    1813     GEN_CHECK_OFF(HDADRIVER, Flags);
     1813    GEN_CHECK_OFF(HDADRIVER, fFlags);
    18141814    GEN_CHECK_OFF(HDADRIVER, uLUN);
    18151815    GEN_CHECK_OFF(HDADRIVER, fAttached);
Note: See TracChangeset for help on using the changeset viewer.

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