diff options
author | Laszlo Ersek <lersek@redhat.com> | 2016-10-12 10:38:49 +0200 |
---|---|---|
committer | Laszlo Ersek <lersek@redhat.com> | 2016-10-16 21:42:40 +0200 |
commit | 88ba362da776b8971db792e32cd21d5c6233d931 (patch) | |
tree | aa00a56c5db0855bf44284b42adf36e128545f71 /OvmfPkg | |
parent | 37b9c0a656ea446bad1824b70a48905e5be1a37b (diff) | |
download | edk2-platforms-88ba362da776b8971db792e32cd21d5c6233d931.tar.xz |
OvmfPkg/QemuVideoDxe: remove useless QEMU_VIDEO_PRIVATE_DATA.LineBuffer
This field is (re)allocated in QemuVideoGraphicsOutputSetMode(), released
in QemuVideoGraphicsOutputDestructor(), and used for nothing else. Remove
it.
Cc: Jordan Justen <jordan.l.justen@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Diffstat (limited to 'OvmfPkg')
-rw-r--r-- | OvmfPkg/QemuVideoDxe/Gop.c | 16 | ||||
-rw-r--r-- | OvmfPkg/QemuVideoDxe/Qemu.h | 1 |
2 files changed, 0 insertions, 17 deletions
diff --git a/OvmfPkg/QemuVideoDxe/Gop.c b/OvmfPkg/QemuVideoDxe/Gop.c index 532f20e644..5485ba3c28 100644 --- a/OvmfPkg/QemuVideoDxe/Gop.c +++ b/OvmfPkg/QemuVideoDxe/Gop.c @@ -167,15 +167,6 @@ Routine Description: ModeData = &Private->ModeData[ModeNumber];
- if (Private->LineBuffer) {
- gBS->FreePool (Private->LineBuffer);
- }
-
- Private->LineBuffer = AllocatePool (4 * ModeData->HorizontalResolution);
- if (Private->LineBuffer == NULL) {
- return EFI_OUT_OF_RESOURCES;
- }
-
switch (Private->Variant) {
case QEMU_VIDEO_CIRRUS_5430:
case QEMU_VIDEO_CIRRUS_5446:
@@ -187,8 +178,6 @@ Routine Description: break;
default:
ASSERT (FALSE);
- gBS->FreePool (Private->LineBuffer);
- Private->LineBuffer = NULL;
return EFI_DEVICE_ERROR;
}
@@ -349,7 +338,6 @@ QemuVideoGraphicsOutputConstructor ( }
Private->GraphicsOutput.Mode->MaxMode = (UINT32) Private->MaxMode;
Private->GraphicsOutput.Mode->Mode = GRAPHICS_OUTPUT_INVALIDE_MODE_NUMBER;
- Private->LineBuffer = NULL;
Private->FrameBufferBltConfigure = NULL;
Private->FrameBufferBltConfigureSize = 0;
@@ -395,10 +383,6 @@ Returns: --*/
{
- if (Private->LineBuffer != NULL) {
- FreePool (Private->LineBuffer);
- }
-
if (Private->FrameBufferBltConfigure != NULL) {
FreePool (Private->FrameBufferBltConfigure);
}
diff --git a/OvmfPkg/QemuVideoDxe/Qemu.h b/OvmfPkg/QemuVideoDxe/Qemu.h index f3358d8a7c..2ce37defc5 100644 --- a/OvmfPkg/QemuVideoDxe/Qemu.h +++ b/OvmfPkg/QemuVideoDxe/Qemu.h @@ -116,7 +116,6 @@ typedef struct { UINTN MaxMode;
QEMU_VIDEO_MODE_DATA *ModeData;
- UINT8 *LineBuffer;
QEMU_VIDEO_VARIANT Variant;
FRAME_BUFFER_CONFIGURE *FrameBufferBltConfigure;
UINTN FrameBufferBltConfigureSize;
|