From 9b9980fb640a1ce4eef67e6310a2f1f1a6965397 Mon Sep 17 00:00:00 2001 From: Chris Packham Date: Sat, 5 Nov 2022 17:23:55 +1300 Subject: [PATCH] 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: 2325ebcdff ("arm: mvebu: Use CONFIG_TIMER on all MVEBU & KIRKWOOD platforms") Signed-off-by: Chris Packham Reviewed-by: Stefan Roese --- arch/arm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5