aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/platform/efi/efi.c2
-rw-r--r--include/linux/efi.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/platform/efi/efi.c b/arch/x86/platform/efi/efi.c
index 0d3a4fa34560..f4f6de987b7b 100644
--- a/arch/x86/platform/efi/efi.c
+++ b/arch/x86/platform/efi/efi.c
@@ -122,7 +122,7 @@ static efi_status_t virt_efi_get_next_variable(unsigned long *name_size,
122 122
123static efi_status_t virt_efi_set_variable(efi_char16_t *name, 123static efi_status_t virt_efi_set_variable(efi_char16_t *name,
124 efi_guid_t *vendor, 124 efi_guid_t *vendor,
125 unsigned long attr, 125 u32 attr,
126 unsigned long data_size, 126 unsigned long data_size,
127 void *data) 127 void *data)
128{ 128{
diff --git a/include/linux/efi.h b/include/linux/efi.h
index e376270cd26e..0758753a17a1 100644
--- a/include/linux/efi.h
+++ b/include/linux/efi.h
@@ -168,7 +168,7 @@ typedef efi_status_t efi_get_variable_t (efi_char16_t *name, efi_guid_t *vendor,
168typedef efi_status_t efi_get_next_variable_t (unsigned long *name_size, efi_char16_t *name, 168typedef efi_status_t efi_get_next_variable_t (unsigned long *name_size, efi_char16_t *name,
169 efi_guid_t *vendor); 169 efi_guid_t *vendor);
170typedef efi_status_t efi_set_variable_t (efi_char16_t *name, efi_guid_t *vendor, 170typedef efi_status_t efi_set_variable_t (efi_char16_t *name, efi_guid_t *vendor,
171 unsigned long attr, unsigned long data_size, 171 u32 attr, unsigned long data_size,
172 void *data); 172 void *data);
173typedef efi_status_t efi_get_next_high_mono_count_t (u32 *count); 173typedef efi_status_t efi_get_next_high_mono_count_t (u32 *count);
174typedef void efi_reset_system_t (int reset_type, efi_status_t status, 174typedef void efi_reset_system_t (int reset_type, efi_status_t status,