summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/SwapBytes16.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/SwapBytes16.c')
-rw-r--r--MdePkg/Library/BaseLib/SwapBytes16.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseLib/SwapBytes16.c b/MdePkg/Library/BaseLib/SwapBytes16.c
index 872250bac1..a656a8cea2 100644
--- a/MdePkg/Library/BaseLib/SwapBytes16.c
+++ b/MdePkg/Library/BaseLib/SwapBytes16.c
@@ -24,16 +24,16 @@
from little endian to big endian or vice versa. The byte swapped value is
returned.
- @param Value Operand A 16-bit unsigned value.
+ @param Value A 16-bit unsigned value.
- @return The byte swapped Operand.
+ @return The byte swapped value.
**/
UINT16
EFIAPI
SwapBytes16 (
- IN UINT16 Operand
+ IN UINT16 Value
)
{
- return (UINT16) ((Operand << 8) | (Operand >> 8));
+ return (UINT16) ((Value<< 8) | (Value>> 8));
}