mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
fix(scmi): add missing \n in ERROR message
Correct ERROR message in scmi_process_message(). Signed-off-by: Yann Gautier <yann.gautier@st.com> Change-Id: I55e337a3904045aa188975f6a7ed3e989678f571
This commit is contained in:
parent
0562c71d4e
commit
0dc9f52a2a
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
// SPDX-License-Identifier: BSD-3-Clause
|
||||
/*
|
||||
* Copyright (c) 2015-2020, Arm Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2015-2022, Arm Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2019-2020, Linaro Limited
|
||||
*/
|
||||
|
||||
|
@ -84,7 +84,7 @@ void scmi_process_message(struct scmi_msg *msg)
|
|||
return;
|
||||
}
|
||||
|
||||
ERROR("Agent %u Protocol 0x%x Message 0x%x: not supported",
|
||||
ERROR("Agent %u Protocol 0x%x Message 0x%x: not supported\n",
|
||||
msg->agent_id, msg->protocol_id, msg->message_id);
|
||||
|
||||
scmi_status_response(msg, SCMI_NOT_SUPPORTED);
|
||||
|
|
Loading…
Add table
Reference in a new issue