Commit 6a457bb2 authored by Michael Walle's avatar Michael Walle Committed by Tom Rini
Browse files

common: fit: add missing newline



The debug statement doesn't end with a newline. Add it.
Signed-off-by: default avatarMichael Walle <michael@walle.cc>
parent 26927493
...@@ -67,7 +67,7 @@ int fit_find_config_node(const void *fdt) ...@@ -67,7 +67,7 @@ int fit_find_config_node(const void *fdt)
if (board_fit_config_name_match(name)) if (board_fit_config_name_match(name))
continue; continue;
debug("Selecting config '%s'", name); debug("Selecting config '%s'\n", name);
return node; return node;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment