https://bugzilla.tianocore.org/show_bug.cgi?id=1373 Replace BSD 2-Clause License with BSD+Patent License. This change is based on the following emails: https://lists.01.org/pipermail/edk2-devel/2019-February/036260.html https://lists.01.org/pipermail/edk2-devel/2018-October/030385.html RFCs with detailed process for the license change: V3: https://lists.01.org/pipermail/edk2-devel/2019-March/038116.html V2: https://lists.01.org/pipermail/edk2-devel/2019-March/037669.html V1: https://lists.01.org/pipermail/edk2-devel/2019-March/037500.html Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
21 lines
568 B
C
21 lines
568 B
C
/** @file
|
|
This GUID will be installed at the end of S3 resume phase as protocol in SMM environment.
|
|
It allows for SMM drivers to hook this point and do the required tasks.
|
|
|
|
Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#ifndef __END_OF_S3_RESUME_H__
|
|
#define __END_OF_S3_RESUME_H__
|
|
|
|
#define EDKII_END_OF_S3_RESUME_GUID \
|
|
{ \
|
|
0x96f5296d, 0x05f7, 0x4f3c, {0x84, 0x67, 0xe4, 0x56, 0x89, 0x0e, 0x0c, 0xb5 } \
|
|
}
|
|
|
|
extern EFI_GUID gEdkiiEndOfS3ResumeGuid;
|
|
|
|
#endif
|