1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-26 21:11:18 +02:00

efi: Drop old LCD code

This relies on the old LCD implementation which is to be removed. Drop the
existing #ifdef and convert it to C code.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass
2022-10-16 15:58:34 -06:00
committed by Anatolij Gustschin
parent f9b7bd7e91
commit 777f3e3695
2 changed files with 5 additions and 35 deletions

View File

@@ -326,11 +326,11 @@ efi_status_t efi_init_obj_list(void)
goto out;
}
#if defined(CONFIG_LCD) || defined(CONFIG_DM_VIDEO)
ret = efi_gop_register();
if (ret != EFI_SUCCESS)
goto out;
#endif
if (IS_ENABLED(CONFIG_DM_VIDEO)) {
ret = efi_gop_register();
if (ret != EFI_SUCCESS)
goto out;
}
#ifdef CONFIG_NET
ret = efi_net_register();
if (ret != EFI_SUCCESS)