summaryrefslogtreecommitdiffstats
path: root/OvmfPkg/Sec
diff options
context:
space:
mode:
authorThomas Palmer <thomas.palmer@hpe.com>2016-07-27 01:48:14 -0500
committerLaszlo Ersek <lersek@redhat.com>2016-07-27 15:40:51 +0200
commit5e443e376928de02ee5af8f151ad315e48372ff2 (patch)
tree17698a09ed9c0c5428d5137f3dd0b7084e06b498 /OvmfPkg/Sec
parentc8ecaaf5e3d3f9b81d73f329501d3fa39739bd41 (diff)
downloadedk2-5e443e376928de02ee5af8f151ad315e48372ff2.tar.gz
edk2-5e443e376928de02ee5af8f151ad315e48372ff2.tar.bz2
edk2-5e443e376928de02ee5af8f151ad315e48372ff2.zip
OvmfPkg/Sec: Use EFI_COMMON_SECTION_HEADER to avoid casts
Drop superfluous casts. There is no change in behavior because EFI_FIRMWARE_VOLUME_IMAGE_SECTION is just a typedef of EFI_COMMON_SECTION_HEADER. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Thomas Palmer <thomas.palmer@hpe.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com> Regression-tested-by: Laszlo Ersek <lersek@redhat.com>
Diffstat (limited to 'OvmfPkg/Sec')
-rw-r--r--OvmfPkg/Sec/SecMain.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/OvmfPkg/Sec/SecMain.c b/OvmfPkg/Sec/SecMain.c
index a12e6768ae..384fa74735 100644
--- a/OvmfPkg/Sec/SecMain.c
+++ b/OvmfPkg/Sec/SecMain.c
@@ -2,6 +2,7 @@
Main SEC phase code. Transitions to PEI.
Copyright (c) 2008 - 2015, Intel Corporation. All rights reserved.<BR>
+ (C) Copyright 2016 Hewlett Packard Enterprise Development LP<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -332,11 +333,11 @@ DecompressMemFvs (
UINT32 AuthenticationStatus;
VOID *OutputBuffer;
VOID *ScratchBuffer;
- EFI_FIRMWARE_VOLUME_IMAGE_SECTION *FvSection;
+ EFI_COMMON_SECTION_HEADER *FvSection;
EFI_FIRMWARE_VOLUME_HEADER *PeiMemFv;
EFI_FIRMWARE_VOLUME_HEADER *DxeMemFv;
- FvSection = (EFI_FIRMWARE_VOLUME_IMAGE_SECTION*) NULL;
+ FvSection = (EFI_COMMON_SECTION_HEADER*) NULL;
Status = FindFfsFileAndSection (
*Fv,
@@ -386,7 +387,7 @@ DecompressMemFvs (
OutputBufferSize,
EFI_SECTION_FIRMWARE_VOLUME_IMAGE,
0,
- (EFI_COMMON_SECTION_HEADER**) &FvSection
+ &FvSection
);
if (EFI_ERROR (Status)) {
DEBUG ((EFI_D_ERROR, "Unable to find PEI FV section\n"));
@@ -411,7 +412,7 @@ DecompressMemFvs (
OutputBufferSize,
EFI_SECTION_FIRMWARE_VOLUME_IMAGE,
1,
- (EFI_COMMON_SECTION_HEADER**) &FvSection
+ &FvSection
);
if (EFI_ERROR (Status)) {
DEBUG ((EFI_D_ERROR, "Unable to find DXE FV section\n"));