]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/SwapBytes32.c
MdePkg: Apply uncrustify changes
[mirror_edk2.git] / MdePkg / Library / BaseLib / SwapBytes32.c
index 5109ad512e62cdeae270b943290cc3edc02e0426..206a846528daedc025c6f03d2848809b71be176c 100644 (file)
@@ -6,9 +6,6 @@
 \r
 **/\r
 \r
-\r
-\r
-\r
 #include "BaseLibInternals.h"\r
 \r
 /**\r
 UINT32\r
 EFIAPI\r
 SwapBytes32 (\r
-  IN      UINT32                    Value\r
+  IN      UINT32  Value\r
   )\r
 {\r
   UINT32  LowerBytes;\r
   UINT32  HigherBytes;\r
 \r
-  LowerBytes  = (UINT32) SwapBytes16 ((UINT16) Value);\r
-  HigherBytes = (UINT32) SwapBytes16 ((UINT16) (Value >> 16));\r
+  LowerBytes  = (UINT32)SwapBytes16 ((UINT16)Value);\r
+  HigherBytes = (UINT32)SwapBytes16 ((UINT16)(Value >> 16));\r
 \r
   return (LowerBytes << 16 | HigherBytes);\r
 }\r