diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2015-05-14 23:33:28 +0000 |
---|---|---|
committer | ydong10 <ydong10@Edk2> | 2015-05-14 23:33:28 +0000 |
commit | e44c60aa2ae7f16b19c93062efb48c89c718e4dd (patch) | |
tree | 76f82faf8390979c210a9535dca7c55b02deb50b /MdeModulePkg | |
parent | 4024c116f68fc288f3264bb18c0b172fbc1f18d8 (diff) | |
download | edk2-platforms-e44c60aa2ae7f16b19c93062efb48c89c718e4dd.tar.xz |
MdeModulePkg: remove unused variable DevicePathSize
Remove the unused DevicePathSize variable from EnumerateAllKeywords().
Due to our use of -Werror=unused-but-set-variable when building under GCC, the presence of DevicePathSize is breaking the build.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17448 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg')
-rw-r--r-- | MdeModulePkg/Universal/HiiDatabaseDxe/ConfigKeywordHandler.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/MdeModulePkg/Universal/HiiDatabaseDxe/ConfigKeywordHandler.c b/MdeModulePkg/Universal/HiiDatabaseDxe/ConfigKeywordHandler.c index c3cd064074..1756c15ce8 100644 --- a/MdeModulePkg/Universal/HiiDatabaseDxe/ConfigKeywordHandler.c +++ b/MdeModulePkg/Universal/HiiDatabaseDxe/ConfigKeywordHandler.c @@ -2565,7 +2565,6 @@ EnumerateAllKeywords ( UINT8 *DevicePathPkg;
UINT8 *DevicePath;
HII_DATABASE_RECORD *DataBaseRecord;
- UINTN DevicePathSize;
HII_DATABASE_PACKAGE_LIST_INSTANCE *PackageListNode;
HII_STRING_PACKAGE_INSTANCE *StringPackage;
CHAR8 *LocalNameSpace;
@@ -2580,7 +2579,6 @@ EnumerateAllKeywords ( BOOLEAN ReadOnly;
DataBaseRecord = NULL;
- DevicePathSize = 0;
Status = EFI_SUCCESS;
MultiKeywordResp = NULL;
DevicePath = NULL;
@@ -2600,7 +2598,6 @@ EnumerateAllKeywords ( DataBaseRecord = CR (Link, HII_DATABASE_RECORD, DatabaseEntry, HII_DATABASE_RECORD_SIGNATURE);
if ((DevicePathPkg = DataBaseRecord->PackageList->DevicePathPkg) != NULL) {
DevicePath = DevicePathPkg + sizeof (EFI_HII_PACKAGE_HEADER);
- DevicePathSize = GetDevicePathSize ((EFI_DEVICE_PATH_PROTOCOL *) DevicePath);
}
PackageListNode = DataBaseRecord->PackageList;
|