From: Michal Simek Date: Wed, 19 Aug 2020 08:44:20 +0000 (+0200) Subject: arc: Kconfig: Add missing DM dependency X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=7b56432c7bc548194bc7c5fa9494392e9a24048a;p=u-boot.git arc: Kconfig: Add missing DM dependency ARC is selecting TIMER which depends on DM but DM is not selected and doesn't need to be enabled. Fix it by selecting DM for ARC architecture. Kconfig is showing this missing dependency by: WARNING: unmet direct dependencies detected for TIMER Depends on [n]: DM [=n] Selected by [y]: - ARC [=y] && Signed-off-by: Michal Simek Reviewed-by: Simon Glass --- diff --git a/arch/Kconfig b/arch/Kconfig index e4a0a0230c..683e384319 100644 --- a/arch/Kconfig +++ b/arch/Kconfig @@ -12,6 +12,7 @@ config ARC bool "ARC architecture" select ARC_TIMER select CLK + select DM select HAVE_PRIVATE_LIBGCC select SUPPORT_OF_CONTROL select TIMER