OvmfPkg: replace old EFI_D_ debug levels with new DEBUG_ ones
Generated mechanically with: find OvmfPkg -type f -exec sed -i -e 's/EFI_D_/DEBUG_/g' {} \; Signed-off-by: Rebecca Cran <rebecca@bsdio.com> Cc: Philippe Mathieu-Daude <philmd@redhat.com> Cc: Jordan Justen <jordan.l.justen@intel.com> Cc: Ard Biesheuvel <ard.biesheuvel@arm.com> Cc: Laszlo Ersek <lersek@redhat.com> Message-Id: <20200429215327.606467-1-rebecca@bsdio.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
committed by
mergify[bot]
parent
2a7a1223d0
commit
70d5086c32
@@ -180,7 +180,7 @@ QemuVideoCirrusModeSetup (
|
||||
ModeData->HorizontalResolution = VideoMode->Width;
|
||||
ModeData->VerticalResolution = VideoMode->Height;
|
||||
ModeData->ColorDepth = VideoMode->ColorDepth;
|
||||
DEBUG ((EFI_D_INFO,
|
||||
DEBUG ((DEBUG_INFO,
|
||||
"Adding Mode %d as Cirrus Internal Mode %d: %dx%d, %d-bit\n",
|
||||
(INT32) (ModeData - Private->ModeData),
|
||||
ModeData->InternalModeIndex,
|
||||
@@ -289,7 +289,7 @@ QemuVideoBochsModeSetup (
|
||||
EFI_ERROR (
|
||||
Private->PciIo->Mem.Read (Private->PciIo, EfiPciIoWidthUint32,
|
||||
PCI_BAR_IDX2, 40, 1, &AvailableFbSize))) {
|
||||
DEBUG ((EFI_D_ERROR, "%a: can't read size of drawable buffer from QXL "
|
||||
DEBUG ((DEBUG_ERROR, "%a: can't read size of drawable buffer from QXL "
|
||||
"ROM\n", __FUNCTION__));
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
@@ -297,7 +297,7 @@ QemuVideoBochsModeSetup (
|
||||
AvailableFbSize = BochsRead (Private, VBE_DISPI_INDEX_VIDEO_MEMORY_64K);
|
||||
AvailableFbSize *= SIZE_64KB;
|
||||
}
|
||||
DEBUG ((EFI_D_INFO, "%a: AvailableFbSize=0x%x\n", __FUNCTION__,
|
||||
DEBUG ((DEBUG_INFO, "%a: AvailableFbSize=0x%x\n", __FUNCTION__,
|
||||
AvailableFbSize));
|
||||
|
||||
//
|
||||
@@ -322,7 +322,7 @@ QemuVideoBochsModeSetup (
|
||||
ModeData->HorizontalResolution = VideoMode->Width;
|
||||
ModeData->VerticalResolution = VideoMode->Height;
|
||||
ModeData->ColorDepth = VideoMode->ColorDepth;
|
||||
DEBUG ((EFI_D_INFO,
|
||||
DEBUG ((DEBUG_INFO,
|
||||
"Adding Mode %d as Bochs Internal Mode %d: %dx%d, %d-bit\n",
|
||||
(INT32) (ModeData - Private->ModeData),
|
||||
ModeData->InternalModeIndex,
|
||||
|
Reference in New Issue
Block a user