]> git.proxmox.com Git - mirror_edk2.git/blame - MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.c
Update the copyright notice format
[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
6 in PI 1.2 specification. \r
4fb31c2c 7\r
8dbae30d 8Copyright (c) 2006 - 2008, Intel Corporation. <BR>\r
4fb31c2c 9All rights reserved. This program and the accompanying materials\r
10are licensed and made available under the terms and conditions of the BSD License\r
11which accompanies this distribution. The full text of the license may be found at\r
12http://opensource.org/licenses/bsd-license.php\r
13\r
14THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16\r
17**/\r
18#include <PiPei.h>\r
109e9a61 19#include <Library/S3Lib.h>\r
4fb31c2c 20\r
21/**\r
e8da1266 22 This function is responsible for calling the S3 resume vector in the ACPI Tables.\r
4fb31c2c 23 \r
5933acc3 24 @retval EFI_SUCESS Success to restore config from S3.\r
4fb31c2c 25 @retval Others Fail to restore config from S3.\r
26**/\r
27EFI_STATUS\r
28EFIAPI\r
e8da1266 29AcpiS3ResumeOs (\r
4fb31c2c 30 VOID\r
31 )\r
32{\r
33 return EFI_UNSUPPORTED;\r
34}\r
35\r