- Timestamp:
- Feb 5, 2018 3:36:25 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120695
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevIoApic.cpp
r70868 r70869 1187 1187 rc = CFGMR3QueryBoolDef(pCfg, "RZEnabled", &fRZEnabled, true); 1188 1188 if (RT_FAILURE(rc)) 1189 return PDMDEV_SET_ERROR(pDevIns, rc, 1190 N_("Configuration error: Failed to query boolean value \"RZEnabled\"")); 1189 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Failed to query boolean value \"RZEnabled\"")); 1191 1190 1192 1191 char szChipType[16]; 1193 1192 rc = CFGMR3QueryStringDef(pCfg, "ChipType", &szChipType[0], sizeof(szChipType), "ICH9"); 1194 1193 if (RT_FAILURE(rc)) 1195 return PDMDEV_SET_ERROR(pDevIns, rc, 1196 N_("Configuration error: Failed to query string value \"ChipType\"")); 1194 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Failed to query string value \"ChipType\"")); 1197 1195 1198 1196 if (!strcmp(szChipType, "ICH9")) … … 1207 1205 { 1208 1206 /* Older 1996-ish discrete I/O APIC, used in P6 class systems. */ 1209 pThis->u8ApicVer = IOAPIC_VERSION_82093AA;1210 pThis->u8IdMask = 0x0f;1207 pThis->u8ApicVer = IOAPIC_VERSION_82093AA; 1208 pThis->u8IdMask = 0x0f; 1211 1209 pThis->u64RteWriteMask = IOAPIC_RTE_VALID_WRITE_MASK_82093AA; 1212 1210 pThis->u64RteReadMask = IOAPIC_RTE_VALID_READ_MASK_82093AA; … … 1339 1337 * Init. the device state. 1340 1338 */ 1341 LogRel(("IOAPIC: Using implementation 2.0! \n"));1339 LogRel(("IOAPIC: Using implementation 2.0! Chipset type %s\n", szChipType)); 1342 1340 ioapicR3Reset(pDevIns); 1343 1341
Note:
See TracChangeset
for help on using the changeset viewer.