]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.c
1. Update DxeIpl PEIM to not use PeCoffLoaderLib to load DXE core. Instead, we choose...
[mirror_edk2.git] / MdeModulePkg / Library / PeiS3LibNull / PeiS3LibNull.c
CommitLineData
8dbae30d 1/** @file\r
109e9a61 2 Null S3 Library instance does nothing and returns unsupport status.\r
4fb31c2c 3\r
8dbae30d 4Copyright (c) 2006 - 2008, Intel Corporation. <BR>\r
4fb31c2c 5All rights reserved. This program and the accompanying materials\r
6are licensed and made available under the terms and conditions of the BSD License\r
7which accompanies this distribution. The full text of the license may be found at\r
8http://opensource.org/licenses/bsd-license.php\r
9\r
10THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
11WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
12\r
13**/\r
14#include <PiPei.h>\r
109e9a61 15#include <Library/S3Lib.h>\r
4fb31c2c 16\r
17/**\r
e8da1266 18 This function is responsible for calling the S3 resume vector in the ACPI Tables.\r
4fb31c2c 19 \r
20 @retval EFI_SUCESS Sucess to restore config from S3.\r
21 @retval Others Fail to restore config from S3.\r
22**/\r
23EFI_STATUS\r
24EFIAPI\r
e8da1266 25AcpiS3ResumeOs (\r
4fb31c2c 26 VOID\r
27 )\r
28{\r
29 return EFI_UNSUPPORTED;\r
30}\r
31\r