ArmPlatformPkg: Update LcdHwNullLib to prevent init

Library previously returned EFI_SUCCESS which causes the platform to
continue initializing LCD HW. Should return EFI_NOT_FOUND.

Resolves TCBZ3351.

Signed-off-by: Oliver Smith-Denny <osde@linux.microsoft.com>
This commit is contained in:
Bret Barkelew 2021-04-21 13:24:31 -07:00 committed by mergify[bot]
parent 489e4a60ea
commit 734aaff862
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ LcdIdentify (
VOID
)
{
return EFI_SUCCESS;
return EFI_NOT_FOUND;
}
/**