RedfishPkg/RedfishPlatformConfigDxe: fix value type issue.

Fix incorrect value type issue for checked-box op-code.
When the variable for checked-box is defined as UINT8 in
varstore structure, IFR compiler assign its value type to
EFI_IFR_TYPE_NUM_SIZE_8 instead of EFI_IFR_TYPE_BOOLEAN.
However, the value type for checked-box is boolean value.
Redfish service may return error because of incorrect value
type passed to BIOS attribute registry.

Signed-off-by: Nickle Wang <nicklew@nvidia.com>
Cc: Abner Chang <abner.chang@amd.com>
Cc: Igor Kulchytskyy <igork@ami.com>
Reviewed-by: Abner Chang <abner.chang@amd.com>
This commit is contained in:
Nickle Wang 2023-05-29 11:49:39 +08:00 committed by mergify[bot]
parent 1034d223f8
commit 9d9761af50
1 changed files with 10 additions and 0 deletions

View File

@ -1221,6 +1221,16 @@ HiiValueToRedfishValue (
RedfishValue->Type = RedfishValueTypeString;
break;
case EFI_IFR_CHECKBOX_OP:
//
// There is case where HII driver defines UINT8 for checked-box opcode storage.
// IFR compiler will assign EFI_IFR_TYPE_NUM_SIZE_8 to its value type instead of
// EFI_IFR_TYPE_BOOLEAN. We do a patch here and use boolean value type for this
// case.
//
if (Value->Type != EFI_IFR_TYPE_BOOLEAN) {
Value->Type = EFI_IFR_TYPE_BOOLEAN;
}
case EFI_IFR_NUMERIC_OP:
Status = HiiValueToRedfishNumeric (Value, RedfishValue);
if (EFI_ERROR (Status)) {