[PATCH master 1/5] efi: payload: drop unreferenced efi_do_execute_image()

Ahmad Fatoum a.fatoum at pengutronix.de
Fri Nov 7 06:17:18 PST 2025


This function exists in efi/payload/bootm.c as efi_execute(), where it's
actually used, so drop this unused copy.

Fixes: 7b0cedb9ddb4 ("efi: payload: split image handling from legacy
                      handover boot and add linux x86 image filetype")
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
 efi/payload/handover.c | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/efi/payload/handover.c b/efi/payload/handover.c
index 82f4cb4f5286..658f3600d6a6 100644
--- a/efi/payload/handover.c
+++ b/efi/payload/handover.c
@@ -33,19 +33,6 @@
 #include "image.h"
 #include "setup_header.h"
 
-static int efi_do_execute_image(enum filetype filetype, const char *file)
-{
-	efi_handle_t handle;
-	struct efi_loaded_image *loaded_image;
-	int ret;
-
-	ret = efi_load_image(file, &loaded_image, &handle);
-	if (ret)
-		return ret;
-
-	return efi_execute_image(handle, loaded_image, filetype);
-}
-
 typedef void(*handover_fn)(void *image, struct efi_system_table *table,
 			   struct x86_setup_header *header);
 
-- 
2.47.3




More information about the barebox mailing list