Changeset 55853 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- May 13, 2015 2:33:49 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 100307
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r55176 r55853 268 268 { 269 269 pThis->iShutdown = 0; 270 LogRel((" DevPcBios: 8900h shutdown request\n"));270 LogRel(("PcBios: 8900h shutdown request\n")); 271 271 return PDMDevHlpVMPowerOff(pDevIns); 272 272 } … … 458 458 if (rc == VERR_VD_IMAGE_READ_ONLY) 459 459 { 460 LogRel((" DevPcBios: ATA failed to update LCHS geometry, read only\n"));460 LogRel(("PcBios: ATA failed to update LCHS geometry, read only\n")); 461 461 rc = VINF_SUCCESS; 462 462 } 463 463 else if (rc == VERR_PDM_GEOMETRY_NOT_SET) 464 464 { 465 LogRel((" DevPcBios: ATA failed to update LCHS geometry, backend refused\n"));465 LogRel(("PcBios: ATA failed to update LCHS geometry, backend refused\n")); 466 466 rc = VINF_SUCCESS; 467 467 } … … 721 721 &LCHSGeometry); 722 722 } 723 LogRel((" DevPcBios: ATA LUN#%d LCHS=%u/%u/%u\n", i, LCHSGeometry.cCylinders, LCHSGeometry.cHeads, LCHSGeometry.cSectors));723 LogRel(("PcBios: ATA LUN#%d LCHS=%u/%u/%u\n", i, LCHSGeometry.cCylinders, LCHSGeometry.cHeads, LCHSGeometry.cSectors)); 724 724 } 725 725 } … … 778 778 &LCHSGeometry); 779 779 } 780 LogRel((" DevPcBios: SATA LUN#%d LCHS=%u/%u/%u\n", i, LCHSGeometry.cCylinders, LCHSGeometry.cHeads, LCHSGeometry.cSectors));780 LogRel(("PcBios: SATA LUN#%d LCHS=%u/%u/%u\n", i, LCHSGeometry.cCylinders, LCHSGeometry.cHeads, LCHSGeometry.cSectors)); 781 781 } 782 782 } … … 831 831 } 832 832 pcbiosCmosInitHardDisk(pDevIns, 0x00, offInfo, &LCHSGeometry); 833 LogRel((" DevPcBios: SCSI LUN#%d LCHS=%u/%u/%u\n", i, LCHSGeometry.cCylinders, LCHSGeometry.cHeads, LCHSGeometry.cSectors));833 LogRel(("PcBios: SCSI LUN#%d LCHS=%u/%u/%u\n", i, LCHSGeometry.cCylinders, LCHSGeometry.cHeads, LCHSGeometry.cSectors)); 834 834 } 835 835 else 836 LogRel((" DevPcBios: SCSI LUN#%d LCHS not provided\n", i));836 LogRel(("PcBios: SCSI LUN#%d LCHS not provided\n", i)); 837 837 } 838 838 } … … 1107 1107 1108 1108 1109 LogRel((" DevPcBios: [SMP] BIOS with %u CPUs\n", pThis->cCpus));1109 LogRel(("PcBios: [SMP] BIOS with %u CPUs\n", pThis->cCpus)); 1110 1110 1111 1111 rc = CFGMR3QueryU8Def(pCfg, "IOAPIC", &pThis->u8IOAPIC, 1); … … 1334 1334 return rc; 1335 1335 1336 LogRel((" DevPcBios: Using BIOS ROM '%s' with a size of %#x bytes\n", pThis->pszPcBiosFile, pThis->cbPcBios));1336 LogRel(("PcBios: Using BIOS ROM '%s' with a size of %#x bytes\n", pThis->pszPcBiosFile, pThis->cbPcBios)); 1337 1337 } 1338 1338 else … … 1400 1400 FwCommonPlantMpsTable(pDevIns, pThis->au8DMIPage + VBOX_DMI_TABLE_SIZE, 1401 1401 _4K - VBOX_DMI_TABLE_SIZE, pThis->cCpus); 1402 LogRel((" DevPcBios: MPS table at %08x\n", VBOX_DMI_TABLE_BASE + VBOX_DMI_TABLE_SIZE));1402 LogRel(("PcBios: MPS table at %08x\n", VBOX_DMI_TABLE_BASE + VBOX_DMI_TABLE_SIZE)); 1403 1403 } 1404 1404 … … 1472 1472 * Ignore failure and fall back to the built-in LAN boot ROM. 1473 1473 */ 1474 LogRel((" DevPcBios: Failed to open LAN boot ROM file '%s', rc=%Rrc!\n", pThis->pszLanBootFile, rc));1474 LogRel(("PcBios: Failed to open LAN boot ROM file '%s', rc=%Rrc!\n", pThis->pszLanBootFile, rc)); 1475 1475 RTFileClose(FileLanBoot); 1476 1476 FileLanBoot = NIL_RTFILE; … … 1485 1485 if (pThis->pszLanBootFile) 1486 1486 { 1487 LogRel((" DevPcBios: Using LAN ROM '%s' with a size of %#x bytes\n", pThis->pszLanBootFile, cbFileLanBoot));1487 LogRel(("PcBios: Using LAN ROM '%s' with a size of %#x bytes\n", pThis->pszLanBootFile, cbFileLanBoot)); 1488 1488 /* 1489 1489 * Allocate buffer for the LAN boot ROM data.
Note:
See TracChangeset
for help on using the changeset viewer.