]> git.proxmox.com Git - mirror_edk2.git/blobdiff - EmbeddedPkg/ResetRuntimeDxe/reset.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / EmbeddedPkg / ResetRuntimeDxe / reset.c
index 1708447e1ec9ef53848015c95eb7c68ff04d9807..213963b519f94b499c6933205e7451bdd1906e8e 100644 (file)
@@ -1,14 +1,8 @@
 /** @file\r
 \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
 \r
-  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
-  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
+  SPDX-License-Identifier: BSD-2-Clause-Patent\r
 \r
 **/\r
 \r
@@ -19,7 +13,6 @@
 #include <Library/UefiBootServicesTableLib.h>\r
 #include <Library/EfiResetSystemLib.h>\r
 \r
-\r
 /**\r
   Resets the entire platform.\r
 \r
 VOID\r
 EFIAPI\r
 ResetSystemViaLib (\r
-  IN EFI_RESET_TYPE   ResetType,\r
-  IN EFI_STATUS       ResetStatus,\r
-  IN UINTN            DataSize,\r
-  IN VOID             *ResetData OPTIONAL\r
+  IN EFI_RESET_TYPE  ResetType,\r
+  IN EFI_STATUS      ResetStatus,\r
+  IN UINTN           DataSize,\r
+  IN VOID            *ResetData OPTIONAL\r
   )\r
 {\r
   LibResetSystem (ResetType, ResetStatus, DataSize, ResetData);\r
   return;\r
 }\r
 \r
-\r
-\r
 EFI_STATUS\r
 EFIAPI\r
 InitializeReset (\r
@@ -57,7 +48,7 @@ InitializeReset (
   EFI_HANDLE  Handle;\r
 \r
   LibInitializeResetSystem (ImageHandle, SystemTable);\r
-  \r
+\r
   SystemTable->RuntimeServices->ResetSystem = ResetSystemViaLib;\r
 \r
   Handle = NULL;\r
@@ -71,4 +62,3 @@ InitializeReset (
 \r
   return Status;\r
 }\r
-\r