From 80becbc989d41e0f1a42494d06ff3d5c332d9c38 Mon Sep 17 00:00:00 2001 From: Hao Wu Date: Tue, 7 Jul 2015 03:04:47 +0000 Subject: EdkCompatibilityPkg: Remove ZeroGuid definition in Datahub2SmbiosThunk MdeModulePkg has defined gZeroGuid in 'Guid/ZeroGuid.h', therefore, the ZeroGuid defined in \Compatibility\PiSmbiosRecordOnDataHubSmbiosRecordThunk is redundant. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu Reviewed-by: Liming Gao Reviewed-by: Jaben Carsey git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17845 6f19259b-4bc3-4df7-8a09-765794883524 --- .../PiSmbiosRecordOnDataHubSmbiosRecordThunk.inf | 3 ++- .../Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Thunk.h | 3 ++- .../PiSmbiosRecordOnDataHubSmbiosRecordThunk/Translate.c | 7 +++---- 3 files changed, 7 insertions(+), 6 deletions(-) (limited to 'EdkCompatibilityPkg/Compatibility') diff --git a/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/PiSmbiosRecordOnDataHubSmbiosRecordThunk.inf b/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/PiSmbiosRecordOnDataHubSmbiosRecordThunk.inf index ce675fbc9a..ad3003988b 100644 --- a/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/PiSmbiosRecordOnDataHubSmbiosRecordThunk.inf +++ b/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/PiSmbiosRecordOnDataHubSmbiosRecordThunk.inf @@ -3,7 +3,7 @@ # is added via EFI_DATA_HUB_PROTOCOL->LogData(), this filter will be invoked to # translate the datahub's record to SMBIOS record. # -# Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+# Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.
# # This program and the accompanying materials # are licensed and made available under the terms and conditions of the BSD License @@ -65,6 +65,7 @@ gEfiMemorySubClassGuid ## CONSUMES gEfiMiscSubClassGuid ## CONSUMES gEfiCacheSubClassGuid ## CONSUMES + gZeroGuid ## SOMETIMES_CONSUMES ## GUID [FeaturePcd] gEfiMdeModulePkgTokenSpaceGuid.PcdFrameworkCompatibilitySupport diff --git a/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Thunk.h b/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Thunk.h index a7e569bfe9..98e53718b9 100644 --- a/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Thunk.h +++ b/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Thunk.h @@ -1,7 +1,7 @@ /** @file The common header file for the thunk driver. -Copyright (c) 2009 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -20,6 +20,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include #include +#include #include #include #include diff --git a/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Translate.c b/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Translate.c index 324ee36fb9..7d674f89f4 100644 --- a/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Translate.c +++ b/EdkCompatibilityPkg/Compatibility/PiSmbiosRecordOnDataHubSmbiosRecordThunk/Translate.c @@ -2,7 +2,7 @@ Translate the DataHub records via EFI_DATA_HUB_PROTOCOL to Smbios recorders via EFI_SMBIOS_PROTOCOL. -Copyright (c) 2009 - 2011, Intel Corporation. All rights reserved.
+Copyright (c) 2009 - 2015, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -15,7 +15,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include "Thunk.h" -EFI_GUID ZeroGuid = { 0, 0, 0, { 0, 0, 0, 0, 0, 0, 0, 0 } }; EFI_SMBIOS_PROTOCOL *mSmbiosProtocol = NULL; /** @@ -83,7 +82,7 @@ SmbiosProcessDataRecord ( // Find a matching entry in the conversion table for this // (SubClass, RecordNumber) pair // - for (; !CompareGuid (&(mConversionTable[Index].SubClass), &ZeroGuid); Index++) { + for (; !CompareGuid (&(mConversionTable[Index].SubClass), &gZeroGuid); Index++) { if (CompareGuid ( &(mConversionTable[Index].SubClass), &(RecordHeader->DataRecordGuid) @@ -94,7 +93,7 @@ SmbiosProcessDataRecord ( } } - if (CompareGuid (&(mConversionTable[Index].SubClass), &ZeroGuid)) { + if (CompareGuid (&(mConversionTable[Index].SubClass), &gZeroGuid)) { // // We cannot find a matching entry in conversion table, // this means this data record cannot be used for SMBIOS. -- cgit v1.2.3