Merge "fix(scmi): add missing \n in ERROR message" into integration

This commit is contained in:
Madhukar Pappireddy 2022-01-31 15:02:38 +01:00 committed by TrustedFirmware Code Review
commit 0fc22fcdbd
1 changed files with 2 additions and 2 deletions

View File

@ -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);