mirror of https://github.com/acidanthera/audk.git
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:
parent
489e4a60ea
commit
734aaff862
|
@ -23,7 +23,7 @@ LcdIdentify (
|
|||
VOID
|
||||
)
|
||||
{
|
||||
return EFI_SUCCESS;
|
||||
return EFI_NOT_FOUND;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue