mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2026-05-05 04:36:13 +02:00
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>
This commit is contained in:
parent
f517f61ba8
commit
875ab2a27f
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user