aboutsummaryrefslogtreecommitdiff
path: root/include/efi_api.h
diff options
context:
space:
mode:
authorMasahisa Kojima <masahisa.kojima@linaro.org>2021-10-22 20:24:24 +0900
committerHeinrich Schuchardt <heinrich.schuchardt@canonical.com>2021-10-25 21:13:06 +0200
commitf86352eb825a450d298b9c1a2b88c07b523c1039 (patch)
tree4f6e98146bb53661b828321b998a961ea680fad9 /include/efi_api.h
parent8e7791a959b875e3f0c0d3f6099402259beef7b1 (diff)
downloadu-boot-f86352eb825a450d298b9c1a2b88c07b523c1039.zip
u-boot-f86352eb825a450d298b9c1a2b88c07b523c1039.tar.gz
u-boot-f86352eb825a450d298b9c1a2b88c07b523c1039.tar.bz2
efi_loader: add missing const qualifier
This commit fixes the following compilation warning of boottime->install_configuration_table() function. lib/efi_selftest/efi_selftest_tcg2.c:475:46: warning: passing argument 1 of ‘boottime->install_configuration_table’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] ret = boottime->install_configuration_table(&smbios_guid, dmi); Signed-off-by: Masahisa Kojima <masahisa.kojima@linaro.org> Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r--include/efi_api.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h
index c8f959b..0accad0 100644
--- a/include/efi_api.h
+++ b/include/efi_api.h
@@ -120,7 +120,7 @@ struct efi_boot_services {
struct efi_device_path **device_path,
efi_handle_t *device);
efi_status_t (EFIAPI *install_configuration_table)(
- efi_guid_t *guid, void *table);
+ const efi_guid_t *guid, void *table);
efi_status_t (EFIAPI *load_image)(bool boot_policiy,
efi_handle_t parent_image,