]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/EmbeddedMonotonicCounter/EmbeddedMonotonicCounter.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / EmbeddedPkg / EmbeddedMonotonicCounter / EmbeddedMonotonicCounter.c
index 8b2e8b0f9937875c0e31b8c829f3f39fa48149d4..1dec02e65a9424760b72d1df5d7d145b8b9ae37a 100644 (file)
@@ -1,8 +1,8 @@
 /** @file\r
 \r
-  Copyright (c) 2008-2009, Apple Inc. All rights reserved.\r
-  \r
-  All rights reserved. This program and the accompanying materials\r
+  Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
+\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
   http://opensource.org/licenses/bsd-license.php\r
@@ -32,7 +32,7 @@ GetNextMonotonicCount (
   if (Count == NULL) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
-  \r
+\r
   *Count = gCurrentMonotonicCount++;\r
   return EFI_SUCCESS;\r
 }\r
@@ -46,9 +46,9 @@ GetNextHighMonotonicCount (
   if (HighCount == NULL) {\r
     return EFI_INVALID_PARAMETER;\r
   }\r
-  \r
+\r
   gCurrentMonotonicCount += 0x0000000100000000ULL;\r
-  \r
+\r
   *HighCount = (UINT32)RShiftU64 (gCurrentMonotonicCount, 32) & 0xFFFFFFFF;\r
 \r
   return EFI_SUCCESS;\r
@@ -72,7 +72,7 @@ MonotonicCounterDriverInitialize (
   gBS->GetNextMonotonicCount     = GetNextMonotonicCount;\r
   gRT->GetNextHighMonotonicCount = GetNextHighMonotonicCount;\r
 \r
-  // Install the Monotonic Counter Architctural Protocol onto a new handle\r
+  // Install the Monotonic Counter Architectural Protocol onto a new handle\r
   Status = gBS->InstallMultipleProtocolInterfaces (\r
                   &Handle,\r
                   &gEfiMonotonicCounterArchProtocolGuid,    NULL,\r