summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorHeinrich Schuchardt <xypron.glpk@gmx.de>2021-03-05 20:36:37 +0300
committerHeinrich Schuchardt <xypron.glpk@gmx.de>2021-11-07 20:36:56 +0300
commitf8d7e6e941321e40c4afa39635116ca4144c4f29 (patch)
tree5742b9a5d71cafcdc7a20c6c618122b8b82adc59 /drivers
parent34f2577e926da818b95837a742323874ece5245f (diff)
downloadu-boot-f8d7e6e941321e40c4afa39635116ca4144c4f29.tar.xz
dfu: newline after updating
Currently output of dfu commands ends on a line with leading hash signs ('#'). The succeeding output should be placed on a new line. After writing updates via dfu print a new line. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/dfu/dfu.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c
index ff1859d946..af3975925a 100644
--- a/drivers/dfu/dfu.c
+++ b/drivers/dfu/dfu.c
@@ -735,6 +735,7 @@ int dfu_write_from_mem_addr(struct dfu_entity *dfu, void *buf, int size)
ret = dfu_flush(dfu, NULL, 0, i);
if (ret)
pr_err("DFU flush failed!");
+ puts("\n");
return ret;
}