common: fit: add missing newline

The debug statement doesn't end with a newline. Add it.

Signed-off-by: Michael Walle <michael@walle.cc>
This commit is contained in:
Michael Walle 2020-11-16 22:01:31 +01:00 committed by Tom Rini
parent 2692749316
commit 6a457bb295

View File

@ -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;
}