|
@@ -507,10 +507,6 @@ typedef efi_status_t efi_get_next_variable_t (unsigned long *name_size, efi_char
|
|
typedef efi_status_t efi_set_variable_t (efi_char16_t *name, efi_guid_t *vendor,
|
|
typedef efi_status_t efi_set_variable_t (efi_char16_t *name, efi_guid_t *vendor,
|
|
u32 attr, unsigned long data_size,
|
|
u32 attr, unsigned long data_size,
|
|
void *data);
|
|
void *data);
|
|
-typedef efi_status_t
|
|
|
|
-efi_set_variable_nonblocking_t(efi_char16_t *name, efi_guid_t *vendor,
|
|
|
|
- u32 attr, unsigned long data_size, void *data);
|
|
|
|
-
|
|
|
|
typedef efi_status_t efi_get_next_high_mono_count_t (u32 *count);
|
|
typedef efi_status_t efi_get_next_high_mono_count_t (u32 *count);
|
|
typedef void efi_reset_system_t (int reset_type, efi_status_t status,
|
|
typedef void efi_reset_system_t (int reset_type, efi_status_t status,
|
|
unsigned long data_size, efi_char16_t *data);
|
|
unsigned long data_size, efi_char16_t *data);
|
|
@@ -851,7 +847,7 @@ extern struct efi {
|
|
efi_get_variable_t *get_variable;
|
|
efi_get_variable_t *get_variable;
|
|
efi_get_next_variable_t *get_next_variable;
|
|
efi_get_next_variable_t *get_next_variable;
|
|
efi_set_variable_t *set_variable;
|
|
efi_set_variable_t *set_variable;
|
|
- efi_set_variable_nonblocking_t *set_variable_nonblocking;
|
|
|
|
|
|
+ efi_set_variable_t *set_variable_nonblocking;
|
|
efi_query_variable_info_t *query_variable_info;
|
|
efi_query_variable_info_t *query_variable_info;
|
|
efi_update_capsule_t *update_capsule;
|
|
efi_update_capsule_t *update_capsule;
|
|
efi_query_capsule_caps_t *query_capsule_caps;
|
|
efi_query_capsule_caps_t *query_capsule_caps;
|
|
@@ -1091,7 +1087,7 @@ struct efivar_operations {
|
|
efi_get_variable_t *get_variable;
|
|
efi_get_variable_t *get_variable;
|
|
efi_get_next_variable_t *get_next_variable;
|
|
efi_get_next_variable_t *get_next_variable;
|
|
efi_set_variable_t *set_variable;
|
|
efi_set_variable_t *set_variable;
|
|
- efi_set_variable_nonblocking_t *set_variable_nonblocking;
|
|
|
|
|
|
+ efi_set_variable_t *set_variable_nonblocking;
|
|
efi_query_variable_store_t *query_variable_store;
|
|
efi_query_variable_store_t *query_variable_store;
|
|
};
|
|
};
|
|
|
|
|