diff options
| author | Chris Packham <[email protected]> | 2022-11-05 17:23:55 +1300 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2022-11-07 07:46:12 +0100 |
| commit | 3988e6d6b1cc1902a680dad39a768df7854bcebf (patch) | |
| tree | ab991a4876489386d51492b76961bc3eef5adc63 | |
| parent | 87ac4b4b4ca5f00e2ddcdac41c9dc691ab2aecf1 (diff) | |
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 <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
| -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 453bef900e8..7866e8f3c4d 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 |
