From: Guo Dong <[email protected]> There is typo in previous change caused coreboot build failue. This patch fixed the build issue.
Cc: Ray Ni <[email protected]> Cc: Maurice Ma <[email protected]> Cc: Benjamin You <[email protected]> Signed-off-by: Guo Dong <[email protected]> --- UefiPayloadPkg/Library/CbParseLib/CbParseLib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UefiPayloadPkg/Library/CbParseLib/CbParseLib.c b/UefiPayloadPkg/Library/CbParseLib/CbParseLib.c index f81aa0f301..4be5d66ba5 100644 --- a/UefiPayloadPkg/Library/CbParseLib/CbParseLib.c +++ b/UefiPayloadPkg/Library/CbParseLib/CbParseLib.c @@ -194,8 +194,8 @@ GetParameterBase ( return NULL; } - PcdSet64S (PcdBootloaderParameter, (UINTN)CbTablePtr); - ASSERT_EFI_STATUS (Status); + Status = PcdSet64S (PcdBootloaderParameter, (UINTN)CbTablePtr); + ASSERT_EFI_ERROR (Status); return CbTablePtr; } -- 2.32.0.windows.2 -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#82060): https://edk2.groups.io/g/devel/message/82060 Mute This Topic: https://groups.io/mt/86328739/21656 Group Owner: [email protected] Unsubscribe: https://edk2.groups.io/g/devel/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
