]> git.proxmox.com Git - mirror_edk2.git/blobdiff - SecurityPkg/Library/PlatformSecureLibNull/PlatformSecureLibNull.c
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / SecurityPkg / Library / PlatformSecureLibNull / PlatformSecureLibNull.c
index 0c6ded22f3e6d330889a5eb7000756de6bab28ea..b350b04ebd90c010cb5f3e183c6422b0308e0313 100644 (file)
@@ -5,17 +5,13 @@
   by a platform-specific method(e.g. Button pressed) in a real platform for product.\r
 \r
 Copyright (c) 2011 - 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
-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
-BOOLEAN       mUserPhysicalPresence      = FALSE;\r
+#include <Uefi/UefiBaseType.h>\r
+\r
+BOOLEAN  mUserPhysicalPresence = FALSE;\r
 \r
 /**\r
 \r
@@ -43,25 +39,19 @@ UserPhysicalPresent (
   return mUserPhysicalPresence;\r
 }\r
 \r
-\r
 /**\r
   Save user physical presence state from a PCD to mUserPhysicalPresence.\r
 \r
-  @param  ImageHandle   ImageHandle of the loaded driver.\r
-  @param  SystemTable   Pointer to the EFI System Table.\r
-\r
   @retval  EFI_SUCCESS          PcdUserPhysicalPresence is got successfully.\r
 \r
 **/\r
-EFI_STATUS\r
+RETURN_STATUS\r
 EFIAPI\r
 PlatformSecureLibNullConstructor (\r
-  IN EFI_HANDLE        ImageHandle,\r
-  IN EFI_SYSTEM_TABLE  *SystemTable\r
+  VOID\r
   )\r
 {\r
+  mUserPhysicalPresence = PcdGetBool (PcdUserPhysicalPresence);\r
 \r
-  mUserPhysicalPresence = PcdGetBool(PcdUserPhysicalPresence);\r
-\r
-  return EFI_SUCCESS;\r
+  return RETURN_SUCCESS;\r
 }\r