From: Patrick Delaunay Date: Fri, 15 Apr 2022 09:46:50 +0000 (+0200) Subject: board: st: common: fix the error messages in stboard command X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=1494e3758634a32a79484099ee9a86ff5e7d737a;p=u-boot.git board: st: common: fix the error messages in stboard command Add missing \n at the end of the error trace Signed-off-by: Patrick Delaunay Reviewed-by: Patrice Chotard Signed-off-by: Patrice Chotard --- diff --git a/board/st/common/cmd_stboard.c b/board/st/common/cmd_stboard.c index c1ecd643b0..e12669b862 100644 --- a/board/st/common/cmd_stboard.c +++ b/board/st/common/cmd_stboard.c @@ -92,14 +92,14 @@ static int do_stboard(struct cmd_tbl *cmdtp, int flag, int argc, &otp, sizeof(otp)); if (ret != sizeof(otp)) { - puts("OTP read error"); + puts("OTP read error\n"); return CMD_RET_FAILURE; } ret = misc_read(dev, STM32_BSEC_LOCK(BSEC_OTP_BOARD), &lock, sizeof(lock)); if (ret != sizeof(lock)) { - puts("LOCK read error"); + puts("LOCK read error\n"); return CMD_RET_FAILURE; }