diff options
author | Tom Rini <trini@konsulko.com> | 2020-09-07 08:49:50 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-09-07 08:49:50 -0400 |
commit | 06193ca210c6f0c864d68a0743d77880bf8d0564 (patch) | |
tree | aae9a01c66cb18600cd903ef1ca904c6c6091268 /include | |
parent | e5df264e7aaca0d94428586837a1f70a23479d16 (diff) | |
parent | d2a885720be6eb66595a26754d075cfd5e868420 (diff) |
Merge tag 'efi-2020-10-rc4' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
Pull request for UEFI sub-system for efi-2020-10-rc4
Bug fixes are provided in the following areas:
* convert file system debug and print messages go log messages
* convert UEFI booting messages to log messages
* UEFI related code clean up and simplification
Diffstat (limited to 'include')
-rw-r--r-- | include/efi.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/efi.h b/include/efi.h index f986aad877..5695273ce9 100644 --- a/include/efi.h +++ b/include/efi.h @@ -180,7 +180,6 @@ enum efi_mem_type { EFI_PERSISTENT_MEMORY_TYPE, EFI_MAX_MEMORY_TYPE, - EFI_TABLE_END, /* For efi_build_mem_table() */ }; /* Attribute values */ @@ -481,17 +480,4 @@ void efi_putc(struct efi_priv *priv, const char ch); */ int efi_info_get(enum efi_entry_t type, void **datap, int *sizep); -/** - * efi_build_mem_table() - make a sorted copy of the memory table - * - * @map: Pointer to EFI memory map table - * @size: Size of table in bytes - * @skip_bs: True to skip boot-time memory and merge it with conventional - * memory. This will significantly reduce the number of table - * entries. - * @return pointer to the new table. It should be freed with free() by the - * caller - */ -void *efi_build_mem_table(struct efi_entry_memmap *map, int size, bool skip_bs); - #endif /* _LINUX_EFI_H */ |