diff options
author | Heinrich Schuchardt | 2024-01-26 08:54:30 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2024-01-29 11:31:06 +0100 |
commit | fa0772180edd404f8ac06fea5bc4f601db1731d6 (patch) | |
tree | d61d6e108c7d043f93b6b755af6670058d1b0d40 /include/efi_loader.h | |
parent | 3a99d05a39ac779861dc8300d078229c0217543b (diff) |
efi_loader: export efi_get_configuration_table
In multiple places we need a function to find an EFI configuration table.
Rename get_config_table() to efi_get_configuration_table() and export it.
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'include/efi_loader.h')
-rw-r--r-- | include/efi_loader.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/efi_loader.h b/include/efi_loader.h index 5c5af4f7fd1..7daca0afba2 100644 --- a/include/efi_loader.h +++ b/include/efi_loader.h @@ -546,6 +546,8 @@ void efi_setup_console_size(void); /* Set up load options from environment variable */ efi_status_t efi_env_set_load_options(efi_handle_t handle, const char *env_var, u16 **load_options); +/* Get EFI configuration table */ +void *efi_get_configuration_table(const efi_guid_t *guid); /* Install device tree */ efi_status_t efi_install_fdt(void *fdt); /* Execute loaded UEFI image */ |