projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
19a7e58
)
efi_loader: fix incorrect use of EFI_EXIT()
author
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Mon, 29 Jun 2020 09:49:58 +0000
(11:49 +0200)
committer
Heinrich Schuchardt
<xypron.glpk@gmx.de>
Mon, 29 Jun 2020 09:56:10 +0000
(11:56 +0200)
efi_get_variable_common() does not use EFI_ENTRY(). So we should not use
EFI_EXIT() either.
Fixes:
767f6eeb01d3
("efi_loader: variable: support variable authentication")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
lib/efi_loader/efi_variable.c
patch
|
blob
|
history
diff --git
a/lib/efi_loader/efi_variable.c
b/lib/efi_loader/efi_variable.c
index
6271dbc
..
c262cb5
100644
(file)
--- a/
lib/efi_loader/efi_variable.c
+++ b/
lib/efi_loader/efi_variable.c
@@
-606,7
+606,7
@@
static efi_status_t efi_get_variable_common(u16 *variable_name,
u32 attr;
if (!variable_name || !vendor || !data_size)
- return EFI_
EXIT(EFI_INVALID_PARAMETER)
;
+ return EFI_
INVALID_PARAMETER
;
ret = efi_to_native(&native_name, variable_name, vendor);
if (ret)