chore: tidy log messages in ffa_memory.c
Optimize log messages line occupation.
Signed-off-by: J-Alves <joao.alves@arm.com>
Change-Id: I6abdec43d596526a84b69f4a635f1e99065deea9
diff --git a/src/ffa_memory.c b/src/ffa_memory.c
index 85e8d62..42e9fbc 100644
--- a/src/ffa_memory.c
+++ b/src/ffa_memory.c
@@ -2680,8 +2680,7 @@
if (relinquish_request->endpoint_count != 1) {
dlog_verbose(
"Stream endpoints not supported (got %d "
- "endpoints on "
- "FFA_MEM_RELINQUISH, expected 1).\n",
+ "endpoints on FFA_MEM_RELINQUISH, expected 1).\n",
relinquish_request->endpoint_count);
return ffa_error(FFA_INVALID_PARAMETERS);
}
@@ -2689,8 +2688,7 @@
if (relinquish_request->endpoints[0] != from_locked.vm->id) {
dlog_verbose(
"VM ID %d in relinquish message doesn't match "
- "calling "
- "VM ID %d.\n",
+ "calling VM ID %d.\n",
relinquish_request->endpoints[0], from_locked.vm->id);
return ffa_error(FFA_INVALID_PARAMETERS);
}
@@ -2723,8 +2721,7 @@
if (receiver_index == memory_region->receiver_count) {
dlog_verbose(
"VM ID %d tried to relinquish memory region "
- "with "
- "handle %#x and it is not a valid borrower.\n",
+ "with handle %#x and it is not a valid borrower.\n",
from_locked.vm->id, handle);
ret = ffa_error(FFA_INVALID_PARAMETERS);
goto out;