From: Heinrich Schuchardt Date: Fri, 7 Oct 2022 14:55:29 +0000 (+0200) Subject: efi_loader: don't export efi_remove_all_protocols X-Git-Tag: baikal/mips/sdk5.8.2~5^2~196^2~7 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=83b6f15733a2ab4b3aff8df721d49d33d29814a3;p=uboot.git efi_loader: don't export efi_remove_all_protocols This function is only used inside efi_boottime.c and is not safe to use outside of this context. Signed-off-by: Heinrich Schuchardt Reviewed-by: Ilias Apalodimas --- diff --git a/include/efi_loader.h b/include/efi_loader.h index 69d6d004f4..c70d977298 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -651,8 +651,6 @@ efi_status_t efi_protocol_open(struct efi_handler *handler, efi_status_t efi_remove_protocol(const efi_handle_t handle, const efi_guid_t *protocol, void *protocol_interface); -/* Delete all protocols from a handle */ -efi_status_t efi_remove_all_protocols(const efi_handle_t handle); /* Install multiple protocol interfaces */ efi_status_t EFIAPI efi_install_multiple_protocol_interfaces(efi_handle_t *handle, ...);