summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorMichael Walle <michael@walle.cc>2020-11-16 22:01:31 +0100
committerTom Rini <trini@konsulko.com>2020-11-19 09:45:49 -0500
commit6a457bb29535c4e743dc4c487caf20a122cea435 (patch)
tree2ac4d72171f4275cf5f6fd0228241325357b3b8f /common
parent26927493161e16d90101c8a6abae551597d46e72 (diff)
common: fit: add missing newline
The debug statement doesn't end with a newline. Add it. Signed-off-by: Michael Walle <michael@walle.cc>
Diffstat (limited to 'common')
-rw-r--r--common/common_fit.c2
1 files changed, 1 insertions, 1 deletions
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;
}