MdePkg:BaseArmTrngLibNull: Assert causing FVP stalling

FVP Base Revc doesn't support Trng.
ASSERT (FALSE) is causing the boot to stall.
Replacing ASSERT with ERROR log.

Signed-off-by: Prachotan Reddy Bathi <Prachotan.Bathi@arm.com>
This commit is contained in:
Prachotan Reddy Bathi 2024-08-22 15:42:15 -05:00 committed by mergify[bot]
parent 383f729ac0
commit 2fe9b6c22f
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ GetArmTrngVersion (
OUT UINT16 *MinorRevision
)
{
ASSERT (FALSE);
DEBUG ((DEBUG_ERROR, "ArmTrng Backend not found\n"));
return RETURN_UNSUPPORTED;
}