From 32d4a8efb9f4839ab6951dafdec62e7a5af5ba3a Mon Sep 17 00:00:00 2001 From: jchen20 Date: Wed, 8 Jul 2009 09:39:49 +0000 Subject: [PATCH] to fill the gap between PI1.0 and code to fix the bug #202435 git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8818 6f19259b-4bc3-4df7-8a09-765794883524 --- MdePkg/Include/Pi/PiPeiCis.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/MdePkg/Include/Pi/PiPeiCis.h b/MdePkg/Include/Pi/PiPeiCis.h index 1d0754db34..c93179a828 100644 --- a/MdePkg/Include/Pi/PiPeiCis.h +++ b/MdePkg/Include/Pi/PiPeiCis.h @@ -702,11 +702,21 @@ EFI_STATUS // #define PEI_SPECIFICATION_MAJOR_REVISION 1 #define PEI_SPECIFICATION_MINOR_REVISION 0 - +/// +/// Inconsistent with specification here: +/// In PI1.0 spec, PEI_SERVICES_SIGNATURE is defined as 0x5652455320494550. But +/// to pass multiple tool chain, it is append a ULL. +/// // // PEI Services Table // #define PEI_SERVICES_SIGNATURE 0x5652455320494550ULL +/// +/// Inconsistent with specification here: +/// In PI1.0 spec, There is a typo error in PEI_SERVICES_REVISION. In the spec. the defintion is +/// #define ((PEI_SPECIFICATION_MAJOR_REVISION<<16) |(PEI_SPECIFICATION_MINOR_REVISION)) +/// and it should be as follow: +/// #define PEI_SERVICES_REVISION ((PEI_SPECIFICATION_MAJOR_REVISION<<16) | (PEI_SPECIFICATION_MINOR_REVISION)) /// -- 2.39.2