summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Simek <michal.simek@xilinx.com>2020-08-19 11:44:20 +0300
committerTom Rini <trini@konsulko.com>2020-08-27 18:26:58 +0300
commit7b56432c7bc548194bc7c5fa9494392e9a24048a (patch)
tree0fedf356bb2a2313baecc19a7769626a318eab75
parent6e741cfa9392ffe3fe87d7657ea9f828bfec4abc (diff)
downloadu-boot-7b56432c7bc548194bc7c5fa9494392e9a24048a.tar.xz
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] && <choice> Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r--arch/Kconfig1
1 files changed, 1 insertions, 0 deletions
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