diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2017-06-22 16:50:01 +0900 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2017-07-11 10:08:20 -0600 |
commit | 766c28a548714a8944e9638a2727157191ff6cca (patch) | |
tree | 611127e05ed11227cfed1033316c9d212c66beed /drivers/core | |
parent | 99bb38e2cce9d99238458e0f6d1880c6d2e80a4d (diff) |
dm: include <dm/util.h> from drivers/core/util.c
Fix sparse warnings "... was not declared. Should it be static?"
Also, fix redefinition of dm_warn/dm_dbg.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/core')
-rw-r--r-- | drivers/core/util.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/core/util.c b/drivers/core/util.c index 5ceac8bbb15..2e232d57a14 100644 --- a/drivers/core/util.c +++ b/drivers/core/util.c @@ -5,9 +5,11 @@ */ #include <common.h> +#include <dm/util.h> #include <libfdt.h> #include <vsprintf.h> +#ifdef CONFIG_DM_WARN void dm_warn(const char *fmt, ...) { va_list args; @@ -16,7 +18,9 @@ void dm_warn(const char *fmt, ...) vprintf(fmt, args); va_end(args); } +#endif +#ifdef DEBUG void dm_dbg(const char *fmt, ...) { va_list args; @@ -25,6 +29,7 @@ void dm_dbg(const char *fmt, ...) vprintf(fmt, args); va_end(args); } +#endif int list_count_items(struct list_head *head) { |