Reviewed-by: David Wei <david....@intel.com>

Thanks,
David  Wei                                 

 Intel SSG BIOS Team


-----Original Message-----
From: Gary Lin [mailto:g...@suse.com] 
Sent: Tuesday, July 26, 2016 3:18 PM
To: edk2-devel@lists.01.org
Cc: Wei, David <david....@intel.com>; Tim He <tim...@intel.com>
Subject: [PATCH 05/19] 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 <david....@intel.com>
Cc: Tim He <tim...@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Gary Lin <g...@suse.com>
---
 Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c 
b/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c
index 195d734..a5cca44 100644
--- a/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c
+++ b/Vlv2TbltDevicePkg/Library/PlatformBdsLib/BdsPlatform.c
@@ -2158,7 +2158,6 @@ BdsLockFv (
   EFI_FV_BLOCK_MAP_ENTRY      *BlockMap;
   EFI_FIRMWARE_VOLUME_HEADER  *FvHeader;
   EFI_PHYSICAL_ADDRESS        BaseAddress;
-  UINT8                       Data;
   UINT32                      BlockLength;
   UINTN                       Index;
 
@@ -2169,7 +2168,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++;
-- 
2.9.2

_______________________________________________
edk2-devel mailing list
edk2-devel@lists.01.org
https://lists.01.org/mailman/listinfo/edk2-devel

Reply via email to