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>
*/
#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;
vprintf(fmt, args);
va_end(args);
}
+#endif
+#ifdef DEBUG
void dm_dbg(const char *fmt, ...)
{
va_list args;
vprintf(fmt, args);
va_end(args);
}
+#endif
int list_count_items(struct list_head *head)
{