]> git.proxmox.com Git - mirror_edk2.git/blame_incremental - MdeModulePkg/Library/PeiS3LibNull/PeiS3LibNull.c
Update the copyright notice format
[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 - 2008, Intel Corporation. All rights reserved.<BR>\r
9This 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
19#include <Library/S3Lib.h>\r
20\r
21/**\r
22 This function is responsible for calling the S3 resume vector in the ACPI Tables.\r
23 \r
24 @retval EFI_SUCESS Success to restore config from S3.\r
25 @retval Others Fail to restore config from S3.\r
26**/\r
27EFI_STATUS\r
28EFIAPI\r
29AcpiS3ResumeOs (\r
30 VOID\r
31 )\r
32{\r
33 return EFI_UNSUPPORTED;\r
34}\r
35\r