- Timestamp:
- May 30, 2012 8:09:08 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevPcBios.cpp
r40973 r41490 756 756 { 757 757 pThis->iShutdown = 0; 758 LogRel((" 8900h shutdown request.\n"));758 LogRel(("DevPcBios: 8900h shutdown request.\n")); 759 759 return PDMDevHlpVMPowerOff(pDevIns); 760 760 } … … 1224 1224 return rc; 1225 1225 1226 LogRel((" Using BIOS ROM '%s' with a size of %#x bytes\n", pThis->pszPcBiosFile, pThis->cbPcBios));1226 LogRel(("DevPcBios: Using BIOS ROM '%s' with a size of %#x bytes\n", pThis->pszPcBiosFile, pThis->cbPcBios)); 1227 1227 } 1228 1228 else … … 1352 1352 * Ignore failure and fall back to the built-in LAN boot ROM. 1353 1353 */ 1354 Log (("pcbiosConstruct: Failed to open LAN boot ROM file '%s', rc=%Rrc!\n", pThis->pszLanBootFile, rc));1354 LogRel(("DevPcBios: Failed to open LAN boot ROM file '%s', rc=%Rrc!\n", pThis->pszLanBootFile, rc)); 1355 1355 RTFileClose(FileLanBoot); 1356 1356 FileLanBoot = NIL_RTFILE; … … 1365 1365 if (pThis->pszLanBootFile) 1366 1366 { 1367 LogRel(("DevPcBios: Using LAN ROM '%s' with a size of %#x bytes\n", pThis->pszLanBootFile, cbFileLanBoot)); 1367 1368 /* 1368 1369 * Allocate buffer for the LAN boot ROM data.
Note:
See TracChangeset
for help on using the changeset viewer.