]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.c
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Library / PeiS3LibNull / PeiS3LibNull.c
CommitLineData
8dbae30d 1/** @file\r
5933acc3 2 Null S3 Library instance does nothing and returns unsupported status.\r
3\r
4 This library instance is no longer used and module using this library\r
5 class should update to directly locate EFI_PEI_S3_RESUME_PPI defined\r
d1102dba 6 in PI 1.2 specification.\r
4fb31c2c 7\r
d1102dba 8Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
9d510e61 9SPDX-License-Identifier: BSD-2-Clause-Patent\r
4fb31c2c 10\r
11**/\r
12#include <PiPei.h>\r
109e9a61 13#include <Library/S3Lib.h>\r
4fb31c2c 14\r
15/**\r
e8da1266 16 This function is responsible for calling the S3 resume vector in the ACPI Tables.\r
d1102dba 17\r
5933acc3 18 @retval EFI_SUCESS Success to restore config from S3.\r
4fb31c2c 19 @retval Others Fail to restore config from S3.\r
20**/\r
21EFI_STATUS\r
22EFIAPI\r
e8da1266 23AcpiS3ResumeOs (\r
4fb31c2c 24 VOID\r
25 )\r
26{\r
27 return EFI_UNSUPPORTED;\r
28}\r
29\r