diff options
author | Michal Simek <michal.simek@xilinx.com> | 2018-07-23 15:55:11 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-07-30 07:18:47 -0400 |
commit | 563273dfa95a6debad6ee6be34403967d832be82 (patch) | |
tree | 1f4141893f57d6d6e9f699dbe3a19a6d94944afb /common | |
parent | d30ba2315ae3dbb886187b6871e9d35b0fb03a11 (diff) | |
download | u-boot-563273dfa95a6debad6ee6be34403967d832be82.zip u-boot-563273dfa95a6debad6ee6be34403967d832be82.tar.gz u-boot-563273dfa95a6debad6ee6be34403967d832be82.tar.bz2 |
common: Log should depends on DM not be selected by DM
Better use depends on instead of select.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
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 |