summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/SwapBytes32.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/SwapBytes32.c')
-rw-r--r--MdePkg/Library/BaseLib/SwapBytes32.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseLib/SwapBytes32.c b/MdePkg/Library/BaseLib/SwapBytes32.c
index f1a1b8925e..9833111447 100644
--- a/MdePkg/Library/BaseLib/SwapBytes32.c
+++ b/MdePkg/Library/BaseLib/SwapBytes32.c
@@ -24,22 +24,22 @@
from little endian to big endian or vice versa. The byte swapped value is
returned.
- @param Value Operand A 32-bit unsigned value.
+ @param Value A 32-bit unsigned value.
- @return The byte swapped Operand.
+ @return The byte swapped Value.
**/
UINT32
EFIAPI
SwapBytes32 (
- IN UINT32 Operand
+ IN UINT32 Value
)
{
UINT32 LowerBytes;
UINT32 HigherBytes;
- LowerBytes = (UINT32) SwapBytes16 ((UINT16) Operand);
- HigherBytes = (UINT32) SwapBytes16 ((UINT16) (Operand >> 16));
+ LowerBytes = (UINT32) SwapBytes16 ((UINT16) Value);
+ HigherBytes = (UINT32) SwapBytes16 ((UINT16) (Value >> 16));
return (LowerBytes << 16 | HigherBytes);
}