diff options
author | Tom Rini <trini@konsulko.com> | 2023-02-15 22:36:48 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-03-02 15:32:25 -0500 |
commit | efb0aa7bf5e3820992b703d731d38a6f6d6fd933 (patch) | |
tree | bbe93a91133e0786a81cab1291471ff1658c297b | |
parent | e7348a7c745fe454046c492a53d17b70b51ad6ba (diff) |
arm: mvebu: Add select on ARCH_EARLY_INIT_R if ARM64
We need to be calling arch_early_init_r() on 64bit mvebu platforms, so
move this to a select.
Cc: Stefan Roese <sr@denx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Stefan Roese <sr@denx.de>
-rw-r--r-- | arch/arm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index bd7fffcce0b..724cbdde257 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -588,6 +588,7 @@ config ARCH_KIRKWOOD config ARCH_MVEBU bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)" + select ARCH_EARLY_INIT_R if ARM64 select DM select DM_SERIAL select DM_SPI |