diff options
author | Simon Glass <sjg@chromium.org> | 2023-02-05 15:39:51 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-09 16:32:26 -0500 |
commit | 418f2173b1bb15dca7f3933f5385abdae8beb509 (patch) | |
tree | 1025bd16616da0082c84389a1f3245111364f7af /arch/arm | |
parent | 28de1e06c9f3f51e80f62ea3fa72af8ff1058728 (diff) | |
download | u-boot-418f2173b1bb15dca7f3933f5385abdae8beb509.tar.gz u-boot-418f2173b1bb15dca7f3933f5385abdae8beb509.tar.bz2 u-boot-418f2173b1bb15dca7f3933f5385abdae8beb509.zip |
Correct SPL use of EXYNOS7420
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_EXYNOS7420 defined in Kconfig
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-exynos/mmu-arm64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/mmu-arm64.c b/arch/arm/mach-exynos/mmu-arm64.c index d2c550b27d..8d8c64e8f8 100644 --- a/arch/arm/mach-exynos/mmu-arm64.c +++ b/arch/arm/mach-exynos/mmu-arm64.c @@ -7,7 +7,7 @@ #include <common.h> #include <asm/armv8/mmu.h> -#if CONFIG_IS_ENABLED(EXYNOS7420) +#if IS_ENABLED(CONFIG_EXYNOS7420) static struct mm_region exynos7420_mem_map[] = { { |