From 563273dfa95a6debad6ee6be34403967d832be82 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Mon, 23 Jul 2018 15:55:11 +0200 Subject: [PATCH] common: Log should depends on DM not be selected by DM Better use depends on instead of select. Signed-off-by: Michal Simek Reviewed-by: Tom Rini --- common/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/Kconfig b/common/Kconfig index 9f6a162..4d7215a 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -430,7 +430,7 @@ menu "Logging" config LOG bool "Enable logging support" - select DM + depends on DM help This enables support for logging of status and debug messages. These can be displayed on the console, recorded in a memory buffer, or