chore: fix log strings
Optimise the lines in the dlog strings.
Signed-off-by: J-Alves <joao.alves@arm.com>
Change-Id: Id345f1f8e4035cd84b23c5136edfe3c8ae059f32
diff --git a/src/api.c b/src/api.c
index f5ff325..fad3c3f 100644
--- a/src/api.c
+++ b/src/api.c
@@ -474,8 +474,7 @@
if (buffer_size > HF_MAILBOX_SIZE) {
dlog_error(
"Partition information does not fit in the "
- "VM's RX "
- "buffer.\n");
+ "VM's RX buffer.\n");
return ffa_error(FFA_NO_MEMORY);
}
@@ -3273,8 +3272,7 @@
}
dlog_verbose(
- "Updating memory transaction descriptor "
- " from v1.0 to v1.1.\n");
+ "Updating memory transaction descriptor from v1.0 to v1.1.\n");
memory_region_v1_0 = (struct ffa_memory_region_v1_0 *)allocated;
@@ -3508,8 +3506,8 @@
share_func == FFA_MEM_DONATE_64) &&
memory_region->receiver_count != 1U) {
dlog_verbose(
- "FFA_MEM_DONATE only supports one recipient. "
- "Specified %u\n",
+ "FFA_MEM_DONATE only supports one recipient. Specified "
+ "%u\n",
memory_region->receiver_count);
ret = ffa_error(FFA_INVALID_PARAMETERS);
goto out;