diff options
Diffstat (limited to 'include/linux/efi.h')
-rw-r--r-- | include/linux/efi.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/linux/efi.h b/include/linux/efi.h index 9203bbb28887..e53458842245 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h | |||
@@ -286,7 +286,7 @@ typedef struct { | |||
286 | efi_status_t (*locate_handle)(int, efi_guid_t *, void *, | 286 | efi_status_t (*locate_handle)(int, efi_guid_t *, void *, |
287 | unsigned long *, efi_handle_t *); | 287 | unsigned long *, efi_handle_t *); |
288 | void *locate_device_path; | 288 | void *locate_device_path; |
289 | void *install_configuration_table; | 289 | efi_status_t (*install_configuration_table)(efi_guid_t *, void *); |
290 | void *load_image; | 290 | void *load_image; |
291 | void *start_image; | 291 | void *start_image; |
292 | void *exit; | 292 | void *exit; |
@@ -633,6 +633,15 @@ void efi_native_runtime_setup(void); | |||
633 | EFI_GUID(0xd3b36f2c, 0xd551, 0x11d4, \ | 633 | EFI_GUID(0xd3b36f2c, 0xd551, 0x11d4, \ |
634 | 0x9a, 0x46, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) | 634 | 0x9a, 0x46, 0x00, 0x90, 0x27, 0x3f, 0xc1, 0x4d) |
635 | 635 | ||
636 | /* | ||
637 | * This GUID is used to pass to the kernel proper the struct screen_info | ||
638 | * structure that was populated by the stub based on the GOP protocol instance | ||
639 | * associated with ConOut | ||
640 | */ | ||
641 | #define LINUX_EFI_ARM_SCREEN_INFO_TABLE_GUID \ | ||
642 | EFI_GUID(0xe03fc20a, 0x85dc, 0x406e, \ | ||
643 | 0xb9, 0xe, 0x4a, 0xb5, 0x02, 0x37, 0x1d, 0x95) | ||
644 | |||
636 | typedef struct { | 645 | typedef struct { |
637 | efi_guid_t guid; | 646 | efi_guid_t guid; |
638 | u64 table; | 647 | u64 table; |