Skip to content

Commit

Permalink
[TCBZ3351] ArmPlatformPkg: Update LcdHwNullLib to prevent init
Browse files Browse the repository at this point in the history
Library previously returned EFI_SUCCESS which causes the platform to
continue initializing LCD HW. Should return EFI_NOT_FOUND.
  • Loading branch information
Bret Barkelew authored and kenlautner committed Dec 19, 2023
1 parent 46fbbdd commit 1c2b943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ArmPlatformPkg/Library/LcdHwNullLib/LcdHwNullLib.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ LcdIdentify (
VOID
)
{
return EFI_SUCCESS;
return EFI_NOT_FOUND; // MU_CHANGE TCBZ3351 - Prevent further LCD init.
}

/**
Expand Down

0 comments on commit 1c2b943

Please sign in to comment.