Skip to content

Commit 14e357e

Browse files
Bret Barkelewos-d
Bret Barkelew
authored andcommitted
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. Fixes TCBZ3351.
1 parent f735cd4 commit 14e357e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ArmPlatformPkg/Library/LcdHwNullLib/LcdHwNullLib.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ LcdIdentify (
2323
VOID
2424
)
2525
{
26-
return EFI_SUCCESS;
26+
return EFI_NOT_FOUND; // MU_CHANGE TCBZ3351 - Prevent further LCD init.
2727
}
2828

2929
/**

0 commit comments

Comments
 (0)