[PATCH] common: fit: add missing newline
Michael Walle
michael at walle.cc
Mon Nov 16 22:01:31 CET 2020
The debug statement doesn't end with a newline. Add it.
Signed-off-by: Michael Walle <michael at walle.cc>
---
common/common_fit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/common_fit.c b/common/common_fit.c
index a993308100..219674d467 100644
--- a/common/common_fit.c
+++ b/common/common_fit.c
@@ -67,7 +67,7 @@ int fit_find_config_node(const void *fdt)
if (board_fit_config_name_match(name))
continue;
- debug("Selecting config '%s'", name);
+ debug("Selecting config '%s'\n", name);
return node;
}
--
2.20.1
More information about the U-Boot
mailing list