diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2022-09-16 10:04:57 +0200 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2022-09-27 13:26:16 +0200 |
commit | 69e377b289376147c84cfd09bab1ad0328a0ecc6 (patch) | |
tree | 6b11f9f5eba435c03490ae4f7e04970c6b3e371d /arch/arm/kernel/setup.c | |
parent | 71c7adc9fffd4e38ebc197314f6909c9fd6051ef (diff) | |
download | linux-69e377b289376147c84cfd09bab1ad0328a0ecc6.tar.gz linux-69e377b289376147c84cfd09bab1ad0328a0ecc6.tar.bz2 linux-69e377b289376147c84cfd09bab1ad0328a0ecc6.zip |
efi/arm: libstub: move ARM specific code out of generic routines
Move some code that is only reachable when IS_ENABLED(CONFIG_ARM) into
the ARM EFI arch code.
Cc: Russell King <linux@armlinux.org.uk>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'arch/arm/kernel/setup.c')
-rw-r--r-- | arch/arm/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 1e8a50a97edf..cb88c6e69377 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -1141,7 +1141,7 @@ void __init setup_arch(char **cmdline_p) #endif setup_dma_zone(mdesc); xen_early_init(); - efi_init(); + arm_efi_init(); /* * Make sure the calculation for lowmem/highmem is set appropriately * before reserving/allocating any memory |