diff options
author | Suqiang Ren <suqiangx.ren@intel.com> | 2024-01-04 09:51:19 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2024-01-15 10:02:33 +0000 |
commit | 195e59bd0c60523caa415f429517e46ff7065600 (patch) | |
tree | 176df32ed3ce75aad69fe3d1eb6594a41c5c62d6 | |
parent | d65b183f92446a3a2855c1c7dd4a7a1b760af381 (diff) | |
download | edk2-195e59bd0c60523caa415f429517e46ff7065600.tar.gz |
MdePkg: Update the comments of HiiConfigAccess ExtractConfig
Add the status code return for HiiConfigAccess ExtractConfig to
align with UEFI spec 2.10.
REF: UEFI spec 2.10 section 35.5.2
Signed-off-by: Suqiang Ren <suqiangx.ren@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Liming Gao <gaoliming@byosoft.com.cn>
Cc: Zhiguang Liu <zhiguang.liu@intel.com>
Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn>
-rw-r--r-- | MdePkg/Include/Protocol/HiiConfigAccess.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/MdePkg/Include/Protocol/HiiConfigAccess.h b/MdePkg/Include/Protocol/HiiConfigAccess.h index 3baf91e07b..fbee7c52b0 100644 --- a/MdePkg/Include/Protocol/HiiConfigAccess.h +++ b/MdePkg/Include/Protocol/HiiConfigAccess.h @@ -102,9 +102,16 @@ typedef UINTN EFI_BROWSER_ACTION; string.
@retval EFI_INVALID_PARAMETER Unknown name. Progress points
- to the & before the name in
+ to the "&" before the name in
question.
+ @retval EFI_INVALID_PARAMETER If Results or Progress is NULL.
+
+ @retval EFI_ACCESS_DENIED The action violated a system policy.
+
+ @retval EFI_DEVICE_ERROR Failed to extract the current configuration
+ for one or more named elements.
+
**/
typedef
EFI_STATUS
|