mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
efi_loader: efi_set_variable use const void *
The SetVariable() runtime service does not change the data passed to it. So mark the parameter as constant. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
0bda81bfdc
commit
452257a34a
3 changed files with 4 additions and 3 deletions
|
@ -254,7 +254,7 @@ efi_status_t EFIAPI efi_get_next_variable_name(efi_uintn_t *variable_name_size,
|
|||
/* http://wiki.phoenix.com/wiki/index.php/EFI_RUNTIME_SERVICES#SetVariable.28.29 */
|
||||
efi_status_t EFIAPI efi_set_variable(u16 *variable_name,
|
||||
const efi_guid_t *vendor, u32 attributes,
|
||||
efi_uintn_t data_size, void *data)
|
||||
efi_uintn_t data_size, const void *data)
|
||||
{
|
||||
char *native_name = NULL, *val = NULL, *s;
|
||||
efi_status_t ret = EFI_SUCCESS;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue