diff options
author | Star Zeng <star.zeng@intel.com> | 2016-05-18 17:04:23 +0800 |
---|---|---|
committer | Star Zeng <star.zeng@intel.com> | 2016-05-20 15:30:18 +0800 |
commit | 66e5133ce0a8940a99451842a804dc5a37b4b687 (patch) | |
tree | a002f8d2e3884be2f7ae8cc5d7230b50e9ccc3b1 | |
parent | 06f7f84598022ab7a2462a680490376424c50a5a (diff) | |
download | edk2-66e5133ce0a8940a99451842a804dc5a37b4b687.tar.gz edk2-66e5133ce0a8940a99451842a804dc5a37b4b687.tar.bz2 edk2-66e5133ce0a8940a99451842a804dc5a37b4b687.zip |
MdePkg: Clarification to the return status of EFI_PEIM_NOTIFY_ENTRY_POINT
In Previous PI spec (< PI1.4a) Volume 1, Section 7.4.1, the callback
EFI_PEIM_NOTIFY_ENTRY_POINT is defined. A description for the arguments
are provided but not for the EFI_STATUS return value.
PI1.4a updated EFI_PEIM_NOTIFY_ENTRY_POINT definition to include a new
paragraph with this sentence after the arguments:
"The status code returned from this function is ignored"
This patch is to follow PI1.4a spec to update the code.
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
-rw-r--r-- | MdePkg/Include/Pi/PiPeiCis.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/MdePkg/Include/Pi/PiPeiCis.h b/MdePkg/Include/Pi/PiPeiCis.h index f57f3331b1..7cd525512f 100644 --- a/MdePkg/Include/Pi/PiPeiCis.h +++ b/MdePkg/Include/Pi/PiPeiCis.h @@ -1,7 +1,7 @@ /** @file
PI PEI master include file. This file should match the PI spec.
-Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials are licensed and made available under
the terms and conditions of the BSD License that accompanies this distribution.
The full text of the license may be found at
@@ -12,7 +12,7 @@ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@par Revision Reference:
- PI Version 1.4.
+ PI Version 1.4a.
**/
@@ -73,6 +73,7 @@ EFI_STATUS @param Ppi Address of the PPI that was installed.
@return Status of the notification.
+ The status code returned from this function is ignored.
**/
typedef
EFI_STATUS
|