diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2020-10-29 14:49:01 +0100 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2020-12-09 08:37:27 +0100 |
commit | 54649911f31b6e7c2a79a1426ca98259139e4c35 (patch) | |
tree | d33275fc08a5ecd278bd2409bf24171089eeae8a /drivers/firmware/efi/libstub/efi-stub.c | |
parent | efi/efi_test: read RuntimeServicesSupported (diff) | |
download | linux-54649911f31b6e7c2a79a1426ca98259139e4c35.tar.xz linux-54649911f31b6e7c2a79a1426ca98259139e4c35.zip |
efi: stub: get rid of efi_get_max_fdt_addr()
Now that ARM started following the example of arm64 and RISC-V, and
no longer imposes any restrictions on the placement of the FDT in
memory at boot, we no longer need per-arch implementations of
efi_get_max_fdt_addr() to factor out the differences. So get rid of
it.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Reviewed-by: Atish Patra <atish.patra@wdc.com>
Link: https://lore.kernel.org/r/20201029134901.9773-1-ardb@kernel.org
Diffstat (limited to 'drivers/firmware/efi/libstub/efi-stub.c')
-rw-r--r-- | drivers/firmware/efi/libstub/efi-stub.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/firmware/efi/libstub/efi-stub.c b/drivers/firmware/efi/libstub/efi-stub.c index 914a343c7785..ec2f3985bef3 100644 --- a/drivers/firmware/efi/libstub/efi-stub.c +++ b/drivers/firmware/efi/libstub/efi-stub.c @@ -273,7 +273,6 @@ efi_status_t __efiapi efi_pe_entry(efi_handle_t handle, install_memreserve_table(); status = allocate_new_fdt_and_exit_boot(handle, &fdt_addr, - efi_get_max_fdt_addr(image_addr), initrd_addr, initrd_size, cmdline_ptr, fdt_addr, fdt_size); if (status != EFI_SUCCESS) |