diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-03-22 18:28:20 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-03-22 18:38:02 +0100 |
commit | 7a4e717b9c0c255137a58f3ab90f002fc3aade2b (patch) | |
tree | d3cdc126a08f57744dea9275f5c44495adeddf61 /include/efi_api.h | |
parent | cde162e76680c57e9756d937ff23c822249bc3af (diff) | |
download | u-boot-7a4e717b9c0c255137a58f3ab90f002fc3aade2b.tar.gz |
efi_loader: definition of GetNextVariableName()
'vendor' is both an input and an output parameter. So it cannot be
constant.
Fixes: 0bda81bfdc5c ("efi_loader: use const efi_guid_t * for variable services")
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r-- | include/efi_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 4713da2e1d..1c40ffc4f5 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -272,7 +272,7 @@ struct efi_runtime_services { efi_uintn_t *data_size, void *data); efi_status_t (EFIAPI *get_next_variable_name)( efi_uintn_t *variable_name_size, - u16 *variable_name, const efi_guid_t *vendor); + u16 *variable_name, efi_guid_t *vendor); efi_status_t (EFIAPI *set_variable)(u16 *variable_name, const efi_guid_t *vendor, u32 attributes, |