diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-03-03 15:41:37 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2018-04-04 11:00:06 +0200 |
commit | 8396e3fd63e8c8e17d60a6d1992ca3df10bc8d66 (patch) | |
tree | a4d44db87cf41e43509377d8dddea0a471fbb938 /lib/efi_loader/efi_boottime.c | |
parent | 28a4fd46e7c6507d788677406a8bd385e0cb35eb (diff) | |
download | u-boot-8396e3fd63e8c8e17d60a6d1992ca3df10bc8d66.tar.gz |
efi_loader: remove deprecated ConsoleControlProtocol
The console control protocol is not defined in the UEFI standard.
It exists in EDK2's EdkCompatiblityPkg package. But this package
is deprecated according to
https://github.com/tianocore/tianocore.github.io/wiki/Differences-between-EDK-and-EDK-II
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib/efi_loader/efi_boottime.c')
-rw-r--r-- | lib/efi_loader/efi_boottime.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/efi_loader/efi_boottime.c b/lib/efi_loader/efi_boottime.c index 8892c86f41..71c244ea80 100644 --- a/lib/efi_loader/efi_boottime.c +++ b/lib/efi_loader/efi_boottime.c @@ -1420,11 +1420,6 @@ efi_status_t efi_setup_loaded_image( if (ret != EFI_SUCCESS) goto failure; - ret = efi_add_protocol(obj->handle, &efi_guid_console_control, - (void *)&efi_console_control); - if (ret != EFI_SUCCESS) - goto failure; - ret = efi_add_protocol(obj->handle, &efi_guid_device_path_to_text_protocol, (void *)&efi_device_path_to_text); |