diff options
author | Heinrich Schuchardt | 2020-06-29 11:49:58 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2020-06-29 11:56:10 +0200 |
commit | e4c1c48eebd072b2fa6f27fd9b7baa731350ebe8 (patch) | |
tree | 62aa946cb9fc1a40b5c14b39e89f8e7821d4b5f3 /lib | |
parent | 19a7e5814b77b288472aa96b6d94fb2591cc9184 (diff) |
efi_loader: fix incorrect use of EFI_EXIT()
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>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efi_loader/efi_variable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c index 6271dbcf41f..c262cb5972b 100644 --- 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) |