diff options
| author | Ilias Apalodimas <[email protected]> | 2024-10-26 10:37:32 +0300 |
|---|---|---|
| committer | Heinrich Schuchardt <[email protected]> | 2024-10-30 21:44:42 +0100 |
| commit | b63cb21221a4f032f9ae7491ff9ff7891a8d3e00 (patch) | |
| tree | 054c1d2b0d369ad0d56ea221d94a9479682f0aee /lib/efi_loader | |
| parent | a01e7d2538ae84bc0a731cb7e946fcb2ddab4fb9 (diff) | |
efi_loader: Mark efi_bootmgr_release_uridp as static
This is only used locally so make it static
Suggested-by: Andy Shevchenko <[email protected]>
Signed-off-by: Ilias Apalodimas <[email protected]>
Reviewed-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Andy Shevchenko <[email protected]>
Diffstat (limited to 'lib/efi_loader')
| -rw-r--r-- | lib/efi_loader/efi_bootmgr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_bootmgr.c b/lib/efi_loader/efi_bootmgr.c index a3aa2b8d1b9..f9b5988a06e 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; |
