diff options
author | Andreas Dannenberg <dannenberg@ti.com> | 2023-05-09 16:38:13 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-06-01 12:32:03 -0400 |
commit | 875ab2a27f3fed5a660d4dc3c8bc250d89baff99 (patch) | |
tree | ad89ac7c4d82ebf790feb9ded1cf53d728227ba0 /drivers/firmware | |
parent | f517f61ba85e33dc283c7f714babcb146b7e7dc4 (diff) | |
download | u-boot-875ab2a27f3fed5a660d4dc3c8bc250d89baff99.tar.gz u-boot-875ab2a27f3fed5a660d4dc3c8bc250d89baff99.tar.bz2 u-boot-875ab2a27f3fed5a660d4dc3c8bc250d89baff99.zip |
firmware: ti_sci: Add missing LF in error message
The "Message not acknowledged" error message is missing a line feed,
leading to the console log getting garbled and joined together with
whatever the next output is in case this error happens:
"ti_sci system-controller@44043000: Message not acknowledgedAuthentication failed!"
Fix ths by adding the missing linefeed character.
Signed-off-by: Andreas Dannenberg <dannenberg@ti.com>
Acked-by: Andrew Davis <afd@ti.com>
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/ti_sci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/ti_sci.c b/drivers/firmware/ti_sci.c index bd7379ae55..72f572d824 100644 --- a/drivers/firmware/ti_sci.c +++ b/drivers/firmware/ti_sci.c @@ -265,7 +265,7 @@ static int ti_sci_do_xfer(struct ti_sci_info *info, if (xfer->rx_len) { ret = ti_sci_get_response(info, xfer, &info->chan_rx); if (!ti_sci_is_response_ack(xfer->tx_message.buf)) { - dev_err(info->dev, "Message not acknowledged"); + dev_err(info->dev, "Message not acknowledged\n"); ret = -ENODEV; } } |