diff options
author | Heinrich Schuchardt | 2020-08-27 12:39:03 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2020-09-06 21:21:41 +0200 |
commit | 5b94e26f1acc665e9b2789a31f3e5a87e23bf38d (patch) | |
tree | 634aa868a2a235c90785834579a72401406f1d83 /include | |
parent | 0f7878b853bdc363a930381c42b709b7d24066b5 (diff) |
efi: clean up efi command
* Eliminate superfluous enum value EFI_TABLE_END.
* Use correct variable type for the memory type.
* Check validity of memory type.
* Make efi_build_mem_table static.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
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 f986aad8777..5695273ce9a 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 */ |