Changeset 71743 in vbox for trunk/src/VBox/Devices/Audio
- Timestamp:
- Apr 7, 2018 10:25:47 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r71740 r71743 4713 4713 static DECLCALLBACK(int) hdaR3Destruct(PPDMDEVINS pDevIns) 4714 4714 { 4715 PDMDEV_CHECK_VERSIONS_RETURN_QUIET(pDevIns); 4715 PDMDEV_CHECK_VERSIONS_RETURN_QUIET(pDevIns); /* this shall come first */ 4716 4716 PHDASTATE pThis = PDMINS_2_DATA(pDevIns, PHDASTATE); 4717 4717 DEVHDA_LOCK(pThis); /** @todo r=bird: this will fail on early constructor failure. */ … … 4753 4753 static DECLCALLBACK(int) hdaR3Construct(PPDMDEVINS pDevIns, int iInstance, PCFGMNODE pCfg) 4754 4754 { 4755 RT_NOREF(iInstance); 4756 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns); 4755 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns); /* this shall come first */ 4757 4756 PHDASTATE pThis = PDMINS_2_DATA(pDevIns, PHDASTATE); 4758 Assert(iInstance == 0); 4757 Assert(iInstance == 0); RT_NOREF(iInstance); 4759 4758 4760 4759 /*
Note:
See TracChangeset
for help on using the changeset viewer.