MdePkg: Add missing status codes
REF: https://uefi.org/specs/UEFI/2.10/Apx_D_Status_Codes.html Upon review it has been found that MdePkg is missing two status code definitions: 1. EFI_IP_ADDRESS_CONFLICT - Added in UEFI Spec v2.5 2. EFI_WARN_RESET_REQUIRED - Added in UEFI Spec v2.6 These missing status codes have been added. Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Cc: Zhiguang Liu <zhiguang.liu@intel.com> Signed-off-by: Nate DeSimone <nathaniel.l.desimone@intel.com>
This commit is contained in:
committed by
mergify[bot]
parent
2d8c17a9b6
commit
107ddf1de9
@@ -1229,6 +1229,11 @@ typedef UINTN RETURN_STATUS;
|
||||
///
|
||||
#define RETURN_COMPROMISED_DATA ENCODE_ERROR (33)
|
||||
|
||||
///
|
||||
/// There is an address conflict address allocation.
|
||||
///
|
||||
#define RETURN_IP_ADDRESS_CONFLICT ENCODE_ERROR (34)
|
||||
|
||||
///
|
||||
/// A HTTP error occurred during the network operation.
|
||||
///
|
||||
@@ -1268,6 +1273,11 @@ typedef UINTN RETURN_STATUS;
|
||||
///
|
||||
#define RETURN_WARN_FILE_SYSTEM ENCODE_WARNING (6)
|
||||
|
||||
///
|
||||
/// The operation will be processed across a system reset.
|
||||
///
|
||||
#define RETURN_WARN_RESET_REQUIRED ENCODE_WARNING (7)
|
||||
|
||||
/**
|
||||
Returns a 16-bit signature built from 2 ASCII characters.
|
||||
|
||||
|
Reference in New Issue
Block a user