]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/Library/TemplateResetSystemLib/ResetSystemLib.c
ARM Packages: Removed trailing spaces
[mirror_edk2.git] / EmbeddedPkg / Library / TemplateResetSystemLib / ResetSystemLib.c
index 5c482a29f74bb208b02dafbc3775944c133ad6a4..328bcbcf165ceaf69660791a235d962b0214353e 100644 (file)
@@ -1,11 +1,11 @@
 /** @file\r
   Template library implementation to support ResetSystem Runtime call.\r
-  \r
+\r
   Fill in the templates with what ever makes you system reset.\r
 \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
@@ -46,30 +46,30 @@ LibResetSystem (
 {\r
   UINTN   Address;\r
   UINT8   Data;\r
-  \r
-  \r
+\r
+\r
   switch (ResetType) {\r
   case EfiResetCold:\r
     // system power cycle\r
-  \r
+\r
     // Example using IoLib functions to do IO.\r
     Address = 0x12345678;\r
     Data = MmioRead8 (Address);\r
     MmioWrite8 (Address, Data | 0x01);\r
-    \r
+\r
     // Note this is a bad example asa MmioOr8 (Address, 0x01) does the same thing\r
     break;\r
-  \r
+\r
   case EfiResetWarm:\r
-    // not a full power cycle, maybe memory stays around. \r
+    // not a full power cycle, maybe memory stays around.\r
     // if not support do the same thing as EfiResetCold.\r
     break;\r
-    \r
+\r
   case EfiResetShutdown:\r
     // turn off the system.\r
     // if not support do the same thing as EfiResetCold.\r
     break;\r
-    \r
+\r
   default:\r
     return EFI_INVALID_PARAMETER;\r
   }\r
@@ -79,7 +79,7 @@ LibResetSystem (
   //\r
   return EFI_DEVICE_ERROR;\r
 }\r
-  \r
+\r
 \r
 \r
 /**\r
@@ -87,7 +87,7 @@ LibResetSystem (
 \r
   @param  ImageHandle   The firmware allocated handle for the EFI image.\r
   @param  SystemTable   A pointer to the EFI System Table.\r
-  \r
+\r
   @retval EFI_SUCCESS   The constructor always returns EFI_SUCCESS.\r
 \r
 **/\r