]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/CheckSum.c
MdePkg: Clean up source files
[mirror_edk2.git] / MdePkg / Library / BaseLib / CheckSum.c
index 677b36fca6d19fd107d6d7c76ea30201e93ee53b..03d49afc5e6c1babae474b07ad2c1bdf84c8ff77 100644 (file)
@@ -2,7 +2,7 @@
   Utility functions to generate checksum based on 2's complement\r
   algorithm.\r
 \r
-  Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>\r
+  Copyright (c) 2007 - 2018, Intel Corporation. All rights reserved.<BR>\r
   This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
@@ -49,7 +49,7 @@ CalculateSum8 (
   for (Sum = 0, Count = 0; Count < Length; Count++) {\r
     Sum = (UINT8) (Sum + *(Buffer + Count));\r
   }\r
-  \r
+\r
   return Sum;\r
 }\r
 \r
@@ -128,7 +128,7 @@ CalculateSum16 (
   for (Sum = 0, Count = 0; Count < Total; Count++) {\r
     Sum = (UINT16) (Sum + *(Buffer + Count));\r
   }\r
-  \r
+\r
   return Sum;\r
 }\r
 \r
@@ -210,7 +210,7 @@ CalculateSum32 (
   for (Sum = 0, Count = 0; Count < Total; Count++) {\r
     Sum = Sum + *(Buffer + Count);\r
   }\r
-  \r
+\r
   return Sum;\r
 }\r
 \r
@@ -292,7 +292,7 @@ CalculateSum64 (
   for (Sum = 0, Count = 0; Count < Total; Count++) {\r
     Sum = Sum + *(Buffer + Count);\r
   }\r
-  \r
+\r
   return Sum;\r
 }\r
 \r