diff options
author | Simon Glass <sjg@chromium.org> | 2020-10-03 11:31:26 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2020-10-29 14:42:17 -0600 |
commit | abb9cd30b23858125ce015c1dffdae4d7895bae8 (patch) | |
tree | dfc71c65c860718f1654e3c67e3fa575a31e099b /include/dm/util.h | |
parent | 1b27273e090590e7944a3f7a3b33ac9f90aae765 (diff) | |
download | u-boot-abb9cd30b23858125ce015c1dffdae4d7895bae8.tar.gz |
dm: core: Allow dm_warn() to be used in SPL
At present this option is disabled in SPL, meaning that warnings are not
displayed. It is sometimes useful to see warnings in SPL for debugging
purposes.
Add a new Kconfig option to permit this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm/util.h')
-rw-r--r-- | include/dm/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/util.h b/include/dm/util.h index 9773db6de1..01a044992f 100644 --- a/include/dm/util.h +++ b/include/dm/util.h @@ -6,7 +6,7 @@ #ifndef __DM_UTIL_H #define __DM_UTIL_H -#ifdef CONFIG_DM_WARN +#if CONFIG_IS_ENABLED(DM_WARN) void dm_warn(const char *fmt, ...); #else static inline void dm_warn(const char *fmt, ...) |