]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.c
MdeModulePkg: Replace BSD License with BSD+Patent License
[mirror_edk2.git] / MdeModulePkg / Library / PeiS3LibNull / PeiS3LibNull.c
... / ...
CommitLineData
1/** @file\r
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
6 in PI 1.2 specification.\r
7\r
8Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>\r
9SPDX-License-Identifier: BSD-2-Clause-Patent\r
10\r
11**/\r
12#include <PiPei.h>\r
13#include <Library/S3Lib.h>\r
14\r
15/**\r
16 This function is responsible for calling the S3 resume vector in the ACPI Tables.\r
17\r
18 @retval EFI_SUCESS Success to restore config from S3.\r
19 @retval Others Fail to restore config from S3.\r
20**/\r
21EFI_STATUS\r
22EFIAPI\r
23AcpiS3ResumeOs (\r
24 VOID\r
25 )\r
26{\r
27 return EFI_UNSUPPORTED;\r
28}\r
29\r