diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-02-07 22:10:49 +0100 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2020-02-19 12:53:36 +0100 |
commit | 7d4d551e7dcea15d63be9a61ad013134e362f6cb (patch) | |
tree | 4a42296b5741445b57b2896da13c701ac60e135d /cmd | |
parent | f2a73d6867ef973fbb8471cc87058205999b5e5c (diff) | |
download | u-boot-7d4d551e7dcea15d63be9a61ad013134e362f6cb.tar.gz |
efi_loader: fix efi_install_fdt() description
In the function description use the correct parameter name.
Mention EFI_FDT_USE_INTERNAL.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bootefi.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/bootefi.c b/cmd/bootefi.c index d347bd5ec0..24fc42ae89 100644 --- a/cmd/bootefi.c +++ b/cmd/bootefi.c @@ -203,15 +203,15 @@ static void *get_config_table(const efi_guid_t *guid) /** * efi_install_fdt() - install device tree * - * If fdt_addr is available, the device tree located at that memory address will - * will be installed as configuration table, otherwise the device tree located - * at the address indicated by environment variable fdt_addr or as fallback - * fdtcontroladdr will be used. + * If fdt is not EFI_FDT_USE_INTERNAL, the device tree located at that memory + * address will will be installed as configuration table, otherwise the device + * tree located at the address indicated by environment variable fdt_addr or as + * fallback fdtcontroladdr will be used. * * On architectures using ACPI tables device trees shall not be installed as * configuration table. * - * @fdt_addr: address of device tree or EFI_FDT_USE_INTERNAL to use the + * @fdt: address of device tree or EFI_FDT_USE_INTERNAL to use the * the hardware device tree as indicated by environment variable * fdt_addr or as fallback the internal device tree as indicated by * the environment variable fdtcontroladdr |