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