From: Gary Lin Date: Fri, 29 Jul 2016 03:25:24 +0000 (+0800) Subject: Vlv2TbltDevicePkg/PlatformBdsLib: Remove the unused variable X-Git-Tag: edk2-stable201903~6148 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=5fc1373db620bd17b3e3efe7d79f4e8bd5aa8413;hp=824dfb5f8b1d7322e9163134c68bbc51ee2c04c0 Vlv2TbltDevicePkg/PlatformBdsLib: Remove the unused variable Fix the following error from gcc: Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c: In function ?BdsLockFv?: Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c:2170:31: error: variable ?Data? set but not used [-Werror=unused-but-set-variable] Cc: David Wei Cc: "Wu, Hao A" Cc: "Lu, ShifeiX A" Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Lin Reviewed-by: David Wei --- diff --git a/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c b/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c index 82ad974dc2..02e4616cfe 100644 --- a/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c +++ b/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c @@ -2163,7 +2163,6 @@ BdsLockFv ( EFI_FV_BLOCK_MAP_ENTRY *BlockMap; EFI_FIRMWARE_VOLUME_HEADER *FvHeader; EFI_PHYSICAL_ADDRESS BaseAddress; - UINT8 Data; UINT32 BlockLength; UINTN Index; @@ -2174,7 +2173,7 @@ BdsLockFv ( while ((BlockMap->NumBlocks != 0) && (BlockMap->Length != 0)) { BlockLength = BlockMap->Length; for (Index = 0; Index < BlockMap->NumBlocks; Index++) { - Data = MmioOr8 ((UINTN) BaseAddress, 0x03); + MmioOr8 ((UINTN) BaseAddress, 0x03); BaseAddress += BlockLength; } BlockMap++;