Changeset 67058 in vbox
- Timestamp:
- May 24, 2017 10:33:41 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 115711
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r65741 r67058 796 796 R3PTRTYPE(PHDASTATE) pHDAState; 797 797 /** Driver flags. */ 798 PDMAUDIODRVFLAGS Flags;798 PDMAUDIODRVFLAGS fFlags; 799 799 uint8_t u32Padding0[2]; 800 800 /** LUN to which this driver has been assigned. */ … … 2933 2933 2934 2934 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. */ 2936 2936 { 2937 2937 if (RT_SUCCESS(rc)) … … 5993 5993 */ 5994 5994 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)); 5998 5998 5999 5999 /* Attach to driver list if not attached yet. */ … … 6401 6401 * might not worth showing an own error message box in the GUI. 6402 6402 */ 6403 if (!(pDrv-> Flags & PDMAUDIODRVFLAGS_PRIMARY))6403 if (!(pDrv->fFlags & PDMAUDIODRVFLAGS_PRIMARY)) 6404 6404 continue; 6405 6405 … … 6609 6609 /* Only register primary driver. 6610 6610 * The device emulation does the output multiplexing then. */ 6611 if (pDrv-> Flags != PDMAUDIODRVFLAGS_PRIMARY)6611 if (pDrv->fFlags != PDMAUDIODRVFLAGS_PRIMARY) 6612 6612 continue; 6613 6613 -
trunk/src/VBox/Devices/testcase/tstDeviceStructSizeRC.cpp
r65960 r67058 1811 1811 GEN_CHECK_OFF(HDADRIVER, Node); 1812 1812 GEN_CHECK_OFF(HDADRIVER, pHDAState); 1813 GEN_CHECK_OFF(HDADRIVER, Flags);1813 GEN_CHECK_OFF(HDADRIVER, fFlags); 1814 1814 GEN_CHECK_OFF(HDADRIVER, uLUN); 1815 1815 GEN_CHECK_OFF(HDADRIVER, fAttached);
Note:
See TracChangeset
for help on using the changeset viewer.