diff options
author | Chris Packham <judge.packham@gmail.com> | 2022-11-05 17:23:55 +1300 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2022-11-07 07:46:12 +0100 |
commit | 3988e6d6b1cc1902a680dad39a768df7854bcebf (patch) | |
tree | ab991a4876489386d51492b76961bc3eef5adc63 /arch | |
parent | 87ac4b4b4ca5f00e2ddcdac41c9dc691ab2aecf1 (diff) | |
download | u-boot-3988e6d6b1cc1902a680dad39a768df7854bcebf.tar.gz u-boot-3988e6d6b1cc1902a680dad39a768df7854bcebf.tar.bz2 u-boot-3988e6d6b1cc1902a680dad39a768df7854bcebf.zip |
arm: mvebu: Don't use CONFIG_TIMER on ARM64
The 64-bit mvebu SoCs don't have a suitable timer driver so add a !ARM64
condition to the select.
Fixes: 7b530bb19e ("arm: mvebu: Use CONFIG_TIMER on all MVEBU & KIRKWOOD platforms")
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 453bef900e..7866e8f3c4 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -640,7 +640,7 @@ config ARCH_MVEBU select SPL_DM_SPI if SPL select SPL_DM_SPI_FLASH if SPL select SPL_TIMER if SPL - select TIMER + select TIMER if !ARM64 select OF_CONTROL select OF_SEPARATE select SPI |