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 <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
This commit is contained in:
parent
13dc7562b6
commit
1494e37586
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user