diff options
author | Tom Rini <trini@konsulko.com> | 2019-06-21 14:12:28 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-06-21 14:12:28 -0400 |
commit | bdf97b5d393fc94666a847e9bac1c358b2c63c59 (patch) | |
tree | 9b24167a74fb925633b851cc0d457a9db9791564 /lib/efi_loader/efi_variable.c | |
parent | 271dc9ce7f9652e2fe3794871900fef292a9777b (diff) | |
parent | 8f89a574a9f4be2ff1402b35f49fcd2e1c6518fd (diff) |
Merge tag 'efi-2019-07-rc5-3' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for v2019.07-rc5 (3)
This pull request provides error fixes for the graphical output protocol,
the text output protocol, and the extended text input protocol.
Setting the boot device for the bootefi command is now not only supported
by the 'load' command but also for the file system specific commands like
'fatload'.
Diffstat (limited to 'lib/efi_loader/efi_variable.c')
-rw-r--r-- | lib/efi_loader/efi_variable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/efi_loader/efi_variable.c b/lib/efi_loader/efi_variable.c index 1d1b23b0e5..d6b75ca02e 100644 --- a/lib/efi_loader/efi_variable.c +++ b/lib/efi_loader/efi_variable.c @@ -148,7 +148,7 @@ static const char *parse_attr(const char *str, u32 *attrp) } /** - * efi_efi_get_variable() - retrieve value of a UEFI variable + * efi_get_variable() - retrieve value of a UEFI variable * * This function implements the GetVariable runtime service. * @@ -404,7 +404,7 @@ efi_status_t EFIAPI efi_get_next_variable_name(efi_uintn_t *variable_name_size, } /** - * efi_efi_set_variable() - set value of a UEFI variable + * efi_set_variable() - set value of a UEFI variable * * This function implements the SetVariable runtime service. * |