mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02: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:
committed by
Alexander Graf
parent
0bda81bfdc
commit
452257a34a
@@ -230,7 +230,8 @@ struct efi_runtime_services {
|
||||
efi_status_t (EFIAPI *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);
|
||||
efi_status_t (EFIAPI *get_next_high_mono_count)(
|
||||
uint32_t *high_count);
|
||||
void (EFIAPI *reset_system)(enum efi_reset_type reset_type,
|
||||
|
Reference in New Issue
Block a user