]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/EmbeddedMonotonicCounter/EmbeddedMonotonicCounter.c
BaseTools/Capsule: Do not support -o with --dump-info
[mirror_edk2.git] / EmbeddedPkg / EmbeddedMonotonicCounter / EmbeddedMonotonicCounter.c
index 7348fa60e61c9a5fb8897edefde4a3e90e6eb1d3..1dec02e65a9424760b72d1df5d7d145b8b9ae37a 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
 \r
   Copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>\r
-  \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
@@ -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