summaryrefslogtreecommitdiff
path: root/ShellPkg/Library/UefiDpLib/DpTrace.c
diff options
context:
space:
mode:
authorSamer El-Haj-Mahmoud <samer.el-haj-mahmoud@hpe.com>2015-09-15 04:54:06 +0000
committershenshushi <shenshushi@Edk2>2015-09-15 04:54:06 +0000
commit2c55a81a0a94656d88dbd8ed56b37c5a53f5e20f (patch)
tree9d37d71b47af219a317a9ef99555885086b15eac /ShellPkg/Library/UefiDpLib/DpTrace.c
parentf70f52f5ed01a527047c63a8c3aeb582e0791615 (diff)
downloadedk2-platforms-2c55a81a0a94656d88dbd8ed56b37c5a53f5e20f.tar.xz
ShellPkg: Rename some functions in Dp to avoid build errors.
There are other libraries with similarly named functions that could be linked with the Shell Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Samer El-Haj-Mahmoud <samer.el-haj-mahmoud@hpe.com> Reviewed-by: Jaben Carsey <jaben.carsey@intel.com> Reviewed-by: Qiu Shumin <shumin.qiu@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18456 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ShellPkg/Library/UefiDpLib/DpTrace.c')
-rw-r--r--ShellPkg/Library/UefiDpLib/DpTrace.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ShellPkg/Library/UefiDpLib/DpTrace.c b/ShellPkg/Library/UefiDpLib/DpTrace.c
index de1d45aa8b..cf8200c6f1 100644
--- a/ShellPkg/Library/UefiDpLib/DpTrace.c
+++ b/ShellPkg/Library/UefiDpLib/DpTrace.c
@@ -2,6 +2,7 @@
Trace reporting for the Dp utility.
Copyright (c) 2009 - 2013, Intel Corporation. All rights reserved.
+ (C) Copyright 2015 Hewlett Packard Enterprise Development LP<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
@@ -216,7 +217,7 @@ DumpAllTrace(
// See if the Handle is in the HandleBuffer
for (TIndex = 0; TIndex < (Size / sizeof(HandleBuffer[0])); TIndex++) {
if (Measurement.Handle == HandleBuffer[TIndex]) {
- GetNameFromHandle (HandleBuffer[TIndex]);
+ DpGetNameFromHandle (HandleBuffer[TIndex]);
break;
}
}
@@ -582,7 +583,7 @@ ProcessHandles(
// See if the Handle is in the HandleBuffer
for (Index = 0; Index < (Size / sizeof(HandleBuffer[0])); Index++) {
if (Measurement.Handle == HandleBuffer[Index]) {
- GetNameFromHandle (HandleBuffer[Index]); // Name is put into mGaugeString
+ DpGetNameFromHandle (HandleBuffer[Index]); // Name is put into mGaugeString
break;
}
}