projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2692749
)
common: fit: add missing newline
author
Michael Walle
<michael@walle.cc>
Mon, 16 Nov 2020 21:01:31 +0000
(22:01 +0100)
committer
Tom Rini
<trini@konsulko.com>
Thu, 19 Nov 2020 14:45:49 +0000
(09:45 -0500)
The debug statement doesn't end with a newline. Add it.
Signed-off-by: Michael Walle <michael@walle.cc>
common/common_fit.c
patch
|
blob
|
history
diff --git
a/common/common_fit.c
b/common/common_fit.c
index
a993308
..
219674d
100644
(file)
--- 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;
}