diff options
author | Heinrich Schuchardt | 2018-04-19 21:59:04 +0200 |
---|---|---|
committer | Tom Rini | 2018-04-28 10:42:35 -0400 |
commit | 9adc78d278bec84b638aa3b25b102f3cfb21438c (patch) | |
tree | 6f8c349762f8d367528146956a380cdf88a5390e /common | |
parent | 1eb2e71edd55e16562e3912881c449db69623352 (diff) |
log: CONFIG_LOG should select CONFIG_DM
Compling with CONFIG_LOG and without CONFIG_DM results in
common/log.c:47: undefined reference to `uclass_get_name'
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 03eeeb24025..4c7a1a9af86 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -424,6 +424,7 @@ menu "Logging" config LOG bool "Enable logging support" + select 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 |