]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
efi_loader: rename efi_bootmgr_image_return_notify
authorIlias Apalodimas <ilias.apalodimas@linaro.org>
Mon, 12 Aug 2024 20:56:37 +0000 (23:56 +0300)
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Thu, 12 Sep 2024 15:32:18 +0000 (17:32 +0200)
We use this event when returning from an EFI HTTP booted image.
The name is a bit confusing since it suggests we always run it,
rename it to make it clearer

Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
lib/efi_loader/efi_bootmgr.c

index 181fc8775b96d077d3a311617ecc08433b52e8d5..03cdee15017d7bbd3140388f69fe357a353f811a 100644 (file)
@@ -421,13 +421,13 @@ efi_status_t efi_bootmgr_release_uridp(struct uridp_context *ctx)
 }
 
 /**
- * efi_bootmgr_image_return_notify() - return to efibootmgr callback
+ * efi_bootmgr_http_return() - return to efibootmgr callback
  *
  * @event:     the event for which this notification function is registered
  * @context:   event context
  */
-static void EFIAPI efi_bootmgr_image_return_notify(struct efi_event *event,
-                                                  void *context)
+static void EFIAPI efi_bootmgr_http_return(struct efi_event *event,
+                                          void *context)
 {
        efi_status_t ret;
 
@@ -533,7 +533,7 @@ static efi_status_t try_load_from_uri_path(struct efi_device_path_uri *uridp,
 
        /* create event for cleanup when the image returns or error occurs */
        ret = efi_create_event(EVT_NOTIFY_SIGNAL, TPL_CALLBACK,
-                              efi_bootmgr_image_return_notify, ctx,
+                              efi_bootmgr_http_return, ctx,
                               &efi_guid_event_group_return_to_efibootmgr,
                               &event);
        if (ret != EFI_SUCCESS) {