diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2019-06-25 16:28:53 +0200 |
---|---|---|
committer | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2019-08-08 11:01:48 +0300 |
commit | 5828efb95bc43ad6a59f05458d3aed9649dd5a63 (patch) | |
tree | c828e619819932d3e40e95b8eef736174124d3c1 /arch/ia64/kernel/setup.c | |
parent | ec7e1605d79d1d469b25e396f2056e42386f512f (diff) | |
download | linux-5828efb95bc43ad6a59f05458d3aed9649dd5a63.tar.gz linux-5828efb95bc43ad6a59f05458d3aed9649dd5a63.tar.bz2 linux-5828efb95bc43ad6a59f05458d3aed9649dd5a63.zip |
efi: ia64: move SAL systab handling out of generic EFI code
The SAL systab is an Itanium specific EFI configuration table, so
move its handling into arch/ia64 where it belongs.
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Diffstat (limited to 'arch/ia64/kernel/setup.c')
-rw-r--r-- | arch/ia64/kernel/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ia64/kernel/setup.c b/arch/ia64/kernel/setup.c index c9cfa760cd57..0e1b4eb149b4 100644 --- a/arch/ia64/kernel/setup.c +++ b/arch/ia64/kernel/setup.c @@ -572,7 +572,7 @@ setup_arch (char **cmdline_p) find_memory(); /* process SAL system table: */ - ia64_sal_init(__va(efi.sal_systab)); + ia64_sal_init(__va(sal_systab_phys)); #ifdef CONFIG_ITANIUM ia64_patch_rse((u64) __start___rse_patchlist, (u64) __end___rse_patchlist); |