Changeset 91864 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Oct 20, 2021 9:04:23 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147667
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DrvACPI.cpp
r82968 r91864 975 975 static DECLCALLBACK(int) drvACPIConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 976 976 { 977 RT_NOREF( fFlags);977 RT_NOREF(pCfg, fFlags); 978 978 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns); 979 979 PDRVACPI pThis = PDMINS_2_DATA(pDrvIns, PDRVACPI); … … 996 996 * Validate the config. 997 997 */ 998 if (!CFGMR3AreValuesValid(pCfg, "\0")) 999 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 998 PDMDRV_VALIDATE_CONFIG_RETURN(pDrvIns, "", ""); 1000 999 1001 1000 /* -
trunk/src/VBox/Devices/PC/DrvAcpiCpu.cpp
r82968 r91864 48 48 static DECLCALLBACK(int) drvACPICpuConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 49 49 { 50 RT_NOREF( fFlags);50 RT_NOREF(pCfg, fFlags); 51 51 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns); 52 52 … … 60 60 * Validate the config. 61 61 */ 62 if (!CFGMR3AreValuesValid(pCfg, "\0")) 63 return VERR_PDM_DRVINS_UNKNOWN_CFG_VALUES; 62 PDMDRV_VALIDATE_CONFIG_RETURN(pDrvIns, "", ""); 64 63 65 64 /*
Note:
See TracChangeset
for help on using the changeset viewer.