diff options
author | Hao Wu <hao.a.wu@intel.com> | 2016-08-30 09:51:40 +0800 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-08-31 11:13:49 +0800 |
commit | dc2109946df2522974a058b0bca5530befdea1cd (patch) | |
tree | 992ac2a88e6e2a602fffeeb130e6c92ddd79b773 /IntelFrameworkModulePkg/Universal/DataHubDxe/DataHub.h | |
parent | 5f53a7aa59d4df1fe4326af18a9240d4dfebc129 (diff) | |
download | edk2-platforms-dc2109946df2522974a058b0bca5530befdea1cd.tar.xz |
IntelFrameworkModulePkg: Use IsZeroGuid API for zero GUID checking
Instead of comparing a GUID with gZeroGuid via the CompareGuid API, the
commit uses the IsZeroGuid API to check if the given GUID is a zero GUID.
Cc: Jeff Fan <jeff.fan@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Hao Wu <hao.a.wu@intel.com>
Reviewed-by: Jeff Fan <jeff.fan@intel.com>
Diffstat (limited to 'IntelFrameworkModulePkg/Universal/DataHubDxe/DataHub.h')
-rw-r--r-- | IntelFrameworkModulePkg/Universal/DataHubDxe/DataHub.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHub.h b/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHub.h index de2e3f34ff..7770c438da 100644 --- a/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHub.h +++ b/IntelFrameworkModulePkg/Universal/DataHubDxe/DataHub.h @@ -2,7 +2,7 @@ This code supports a the private implementation
of the Data Hub protocol
-Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
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
@@ -21,8 +21,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #include <Protocol/DataHub.h>
-#include <Guid/ZeroGuid.h>
-
#include <Library/DebugLib.h>
#include <Library/UefiDriverEntryPoint.h>
#include <Library/UefiLib.h>
|