From: Ilias Apalodimas Date: Sat, 26 Oct 2024 07:37:32 +0000 (+0300) Subject: efi_loader: Mark efi_bootmgr_release_uridp as static X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-logo.png?a=commitdiff_plain;h=b63cb21221a4f032f9ae7491ff9ff7891a8d3e00;p=u-boot.git efi_loader: Mark efi_bootmgr_release_uridp as static This is only used locally so make it static Suggested-by: Andy Shevchenko Signed-off-by: Ilias Apalodimas Reviewed-by: Heinrich Schuchardt Reviewed-by: Andy Shevchenko --- diff --git a/lib/efi_loader/efi_bootmgr.c b/lib/efi_loader/efi_bootmgr.c index a3aa2b8d1b..f9b5988a06 100644 --- a/lib/efi_loader/efi_bootmgr.c +++ b/lib/efi_loader/efi_bootmgr.c @@ -385,7 +385,7 @@ err: * @ctx: event context * Return: status code */ -efi_status_t efi_bootmgr_release_uridp(struct uridp_context *ctx) +static efi_status_t efi_bootmgr_release_uridp(struct uridp_context *ctx) { efi_status_t ret = EFI_SUCCESS; efi_status_t ret2 = EFI_SUCCESS;