From fa1beef5081ef3777b176c94bbf9a31b5f601b95 Mon Sep 17 00:00:00 2001 From: Michael Kinney Date: Thu, 17 Nov 2016 11:08:38 -0800 Subject: [PATCH] MdePkg/BaseSynchronizationLib: Fix function names in function headers Some of the function names in function header comment blocks in assembly files do not match the symbol name in the assembly sources. Update function header comment blocks to match symbol name. Cc: Liming Gao Cc: Laszlo Ersek Cc: Andrew Fish Cc: Jeff Fan Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Michael Kinney Reviewed-by: Laszlo Ersek Reviewed-by: Liming Gao --- .../BaseSynchronizationLib/X64/InterlockedCompareExchange16.asm | 2 +- .../X64/InterlockedCompareExchange16.nasm | 2 +- .../BaseSynchronizationLib/X64/InterlockedCompareExchange32.asm | 2 +- .../X64/InterlockedCompareExchange32.nasm | 2 +- .../BaseSynchronizationLib/X64/InterlockedCompareExchange64.asm | 2 +- .../X64/InterlockedCompareExchange64.nasm | 2 +- .../Library/BaseSynchronizationLib/X64/InterlockedDecrement.asm | 2 +- .../BaseSynchronizationLib/X64/InterlockedDecrement.nasm | 2 +- .../Library/BaseSynchronizationLib/X64/InterlockedIncrement.asm | 2 +- .../BaseSynchronizationLib/X64/InterlockedIncrement.nasm | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.asm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.asm index e8919222e3..262adeb1a9 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.asm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.asm @@ -27,7 +27,7 @@ ;------------------------------------------------------------------------------ ; UINT16 ; EFIAPI -; InterlockedCompareExchange16 ( +; InternalSyncCompareExchange16 ( ; IN volatile UINT16 *Value, ; IN UINT16 CompareValue, ; IN UINT16 ExchangeValue diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.nasm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.nasm index efe3249f98..eebed5a0d2 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.nasm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange16.nasm @@ -28,7 +28,7 @@ ;------------------------------------------------------------------------------ ; UINT16 ; EFIAPI -; InterlockedCompareExchange16 ( +; InternalSyncCompareExchange16 ( ; IN volatile UINT16 *Value, ; IN UINT16 CompareValue, ; IN UINT16 ExchangeValue diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.asm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.asm index 269a3c7e41..711b3996b2 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.asm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.asm @@ -26,7 +26,7 @@ ;------------------------------------------------------------------------------ ; UINT32 ; EFIAPI -; InterlockedCompareExchange32 ( +; InternalSyncCompareExchange32 ( ; IN volatile UINT32 *Value, ; IN UINT32 CompareValue, ; IN UINT32 ExchangeValue diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.nasm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.nasm index 31142d03c0..5ed4ba5148 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.nasm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange32.nasm @@ -27,7 +27,7 @@ ;------------------------------------------------------------------------------ ; UINT32 ; EFIAPI -; InterlockedCompareExchange32 ( +; InternalSyncCompareExchange32 ( ; IN volatile UINT32 *Value, ; IN UINT32 CompareValue, ; IN UINT32 ExchangeValue diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.asm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.asm index 80d03fd11a..be429d8e8f 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.asm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.asm @@ -26,7 +26,7 @@ ;------------------------------------------------------------------------------ ; UINT64 ; EFIAPI -; InterlockedCompareExchange64 ( +; InternalSyncCompareExchange64 ( ; IN volatile UINT64 *Value, ; IN UINT64 CompareValue, ; IN UINT64 ExchangeValue diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.nasm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.nasm index 819daed246..2b268b6b46 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.nasm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedCompareExchange64.nasm @@ -27,7 +27,7 @@ ;------------------------------------------------------------------------------ ; UINT64 ; EFIAPI -; InterlockedCompareExchange64 ( +; InternalSyncCompareExchange64 ( ; IN volatile UINT64 *Value, ; IN UINT64 CompareValue, ; IN UINT64 ExchangeValue diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.asm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.asm index 23f03c4a7b..4dc3886968 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.asm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.asm @@ -26,7 +26,7 @@ ;------------------------------------------------------------------------------ ; UINT32 ; EFIAPI -; InterlockedDecrement ( +; InternalSyncDecrement ( ; IN volatile UINT32 *Value ; ); ;------------------------------------------------------------------------------ diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.nasm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.nasm index 780d9020bb..60f43111fe 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.nasm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedDecrement.nasm @@ -27,7 +27,7 @@ ;------------------------------------------------------------------------------ ; UINT32 ; EFIAPI -; InterlockedDecrement ( +; InternalSyncDecrement ( ; IN volatile UINT32 *Value ; ); ;------------------------------------------------------------------------------ diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.asm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.asm index 44f264f97d..fc086b6e87 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.asm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.asm @@ -26,7 +26,7 @@ ;------------------------------------------------------------------------------ ; UINT32 ; EFIAPI -; InterlockedIncrement ( +; InternalSyncIncrement ( ; IN volatile UINT32 *Value ; ); ;------------------------------------------------------------------------------ diff --git a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.nasm b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.nasm index e1c70a448d..7f877b5774 100644 --- a/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.nasm +++ b/MdePkg/Library/BaseSynchronizationLib/X64/InterlockedIncrement.nasm @@ -27,7 +27,7 @@ ;------------------------------------------------------------------------------ ; UINT32 ; EFIAPI -; InterlockedIncrement ( +; InternalSyncIncrement ( ; IN volatile UINT32 *Value ; ); ;------------------------------------------------------------------------------ -- 2.39.2