diff mbox series

common: fit: add missing newline

Message ID 20201116210131.10064-1-michael@walle.cc
State Accepted
Commit 6a457bb29535c4e743dc4c487caf20a122cea435
Delegated to: Tom Rini
Headers show
Series common: fit: add missing newline | expand

Commit Message

Michael Walle Nov. 16, 2020, 9:01 p.m. UTC
The debug statement doesn't end with a newline. Add it.

Signed-off-by: Michael Walle <michael@walle.cc>
---
 common/common_fit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Tom Rini Nov. 20, 2020, 1:39 a.m. UTC | #1
On Mon, Nov 16, 2020 at 10:01:31PM +0100, Michael Walle wrote:

> The debug statement doesn't end with a newline. Add it.
> 
> Signed-off-by: Michael Walle <michael@walle.cc>

Applied to u-boot/master, thanks!
diff mbox series

Patch

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