diff options
author | Liming Gao <liming.gao@intel.com> | 2017-09-08 10:39:44 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2017-09-13 15:02:08 +0800 |
commit | 5f56b0ff24fe9021567a9c490a05f016db57119d (patch) | |
tree | 957177a3779ec7b5997510f92f0ad41f703ee138 | |
parent | 35aec96c221b643b26e78305f6acda8ab0647cf3 (diff) | |
download | edk2-5f56b0ff24fe9021567a9c490a05f016db57119d.tar.gz |
MdeModulePkg: Update PiDxeS3BootScriptLib Internal function name
To avoid the function name conflict, update the internal function name
to be the specific one.
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Star Zeng <star.zeng@intel.com>
-rw-r--r-- | MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c b/MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c index b865d4452f..8761d69eac 100644 --- a/MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c +++ b/MdeModulePkg/Library/PiDxeS3BootScriptLib/BootScriptExecute.c @@ -57,7 +57,7 @@ **/
EFI_STATUS
-SmbusExecute (
+InternalSmbusExecute (
IN UINTN SmbusAddress,
IN EFI_SMBUS_OPERATION Operation,
IN OUT UINTN *Length,
@@ -1053,7 +1053,7 @@ BootScriptExecuteSmbusExecute ( SmBusAddress = (UINTN)SmbusExecuteEntry.SmBusAddress;
DataSize = (UINTN) SmbusExecuteEntry.DataSize;
- return SmbusExecute (
+ return InternalSmbusExecute (
SmBusAddress,
(EFI_SMBUS_OPERATION) SmbusExecuteEntry.Operation,
&DataSize,
|