Fix small print issue with displaying memory region handle
Change-Id: I4d0bccdbf553fa37fbd3884a3720cfad859e9b4d
Signed-off-by: Olivier Deprez <olivier.deprez@arm.com>
diff --git a/src/ffa_memory.c b/src/ffa_memory.c
index 3f11a0f..00ec68c 100644
--- a/src/ffa_memory.c
+++ b/src/ffa_memory.c
@@ -335,11 +335,11 @@
return;
}
- dlog("from VM %#x, attributes %#x, flags %#x, handle %#x, tag %u, to "
+ dlog("from VM %#x, attributes %#x, flags %#x, tag %u, to "
"%u "
"recipients [",
memory_region->sender, memory_region->attributes,
- memory_region->flags, memory_region->handle, memory_region->tag,
+ memory_region->flags, memory_region->tag,
memory_region->receiver_count);
for (i = 0; i < memory_region->receiver_count; ++i) {
if (i != 0) {
@@ -381,7 +381,7 @@
dlog("invalid share_func %#x",
share_states[i].share_func);
}
- dlog(" (");
+ dlog(" %#x (", share_states[i].memory_region->handle);
dump_memory_region(share_states[i].memory_region);
if (share_states[i].sending_complete) {
dlog("): fully sent");