fix(ff-a): boot info version matches partition version

According to FF-A spec beginning in version v1.1, when SPMC passes the
boot information blob to a partition, it should set the FF-A version in
the boot information header to the version specified by the partition in
its manifest.

See FF-A v1.3 ALP1 5.4.2 Boot information header for more information.

Signed-off-by: Kathleen Capella <kathleen.capella@arm.com>
Change-Id: I19a79be4bb7fa9e524e47ecff1e3d9e76b5a7031
diff --git a/src/manifest.c b/src/manifest.c
index d20a0cf..d75db65 100644
--- a/src/manifest.c
+++ b/src/manifest.c
@@ -1552,7 +1552,8 @@
 				"space.\n",
 				vm->debug_name.data);
 		} else {
-			if (!ffa_boot_info_node(&boot_info_node, &pkg)) {
+			if (!ffa_boot_info_node(&boot_info_node, &pkg,
+						vm->partition.ffa_version)) {
 				dlog_error(
 					"Failed to process boot "
 					"information.\n");