Changeset 2569 in vbox
- Timestamp:
- May 9, 2007 4:56:55 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 21036
- Location:
- trunk/src/VBox/Devices
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r2269 r2569 4474 4474 "CustomVideoMode14\0" 4475 4475 "CustomVideoMode15\0" 4476 "CustomVideoMode16 "))4476 "CustomVideoMode16\0")) 4477 4477 return PDMDEV_SET_ERROR(pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES, 4478 4478 N_("Invalid configuration for vga device")); -
trunk/src/VBox/Devices/PC/DevPit-i8254.cpp
r2468 r2569 889 889 * Validate configuration. 890 890 */ 891 if (!CFGMR3AreValuesValid(pCfgHandle, "Irq\0Base\0Speaker\0GCEnabled\0R0Enabled "))891 if (!CFGMR3AreValuesValid(pCfgHandle, "Irq\0Base\0Speaker\0GCEnabled\0R0Enabled\0")) 892 892 return VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES; 893 893 -
trunk/src/VBox/Devices/Storage/DevATA.cpp
r2565 r2569 5676 5676 * Validate and read configuration. 5677 5677 */ 5678 if (!CFGMR3AreValuesValid(pCfgHandle, "GCEnabled\0IRQDelay\0R0Enabled "))5678 if (!CFGMR3AreValuesValid(pCfgHandle, "GCEnabled\0IRQDelay\0R0Enabled\0")) 5679 5679 return PDMDEV_SET_ERROR(pDevIns, VERR_PDM_DEVINS_UNKNOWN_CFG_VALUES, 5680 5680 N_("PIIX3 configuration error: unknown option specified."));
Note:
See TracChangeset
for help on using the changeset viewer.