projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
711720a
)
fit: Add missing CR in debug output in fit_find_config_node()
author
Stefan Roese
<sr@denx.de>
Thu, 8 Nov 2018 06:00:31 +0000
(07:00 +0100)
committer
Tom Rini
<trini@konsulko.com>
Fri, 9 Nov 2018 15:44:50 +0000
(10:44 -0500)
Testing has shown that a line-break is missing in one debug line in
fit_find_config_node().
Signed-off-by: Stefan Roese <sr@denx.de>
common/common_fit.c
patch
|
blob
|
history
diff --git
a/common/common_fit.c
b/common/common_fit.c
index 577b352554c009b4b9efdf8720aeebe980b2f71a..08b51eaffc34912e5ceeca55e5bc18cfc4a18d46 100644
(file)
--- a/
common/common_fit.c
+++ b/
common/common_fit.c
@@
-73,7
+73,7
@@
int fit_find_config_node(const void *fdt)
}
if (dflt_conf_node != -ENOENT) {
- debug("Selecting default config '%s'", dflt_conf_desc);
+ debug("Selecting default config '%s'
\n
", dflt_conf_desc);
return dflt_conf_node;
}