aboutsummaryrefslogtreecommitdiff
path: root/secure_fw/partitions
diff options
context:
space:
mode:
authorMingyang Sun <mingyang.sun@arm.com>2021-06-01 20:41:15 +0800
committerMingyang Sun <mingyang.sun@arm.com>2021-06-03 04:38:38 +0200
commita03ad02cf8bc7a9c552f6e971e5cf8bf5be0566d (patch)
tree789bc0a98e64d025c6708c6b47d6eb3c0e5cec1f /secure_fw/partitions
parenta38e9b50d1675c23a94646d93cbe97d9827dca14 (diff)
downloadtrusted-firmware-m-a03ad02cf8bc7a9c552f6e971e5cf8bf5be0566d.tar.gz
SPM: Fix load info manifest template
Numbers should be represented correctly. Hex number does not have "0x" prefix in template. Change-Id: I334abc0e6ffdd1a7ceb03875f4424298d366c1aa Signed-off-by: Mingyang Sun <mingyang.sun@arm.com>
Diffstat (limited to 'secure_fw/partitions')
-rw-r--r--secure_fw/partitions/partition_load_info.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/secure_fw/partitions/partition_load_info.template b/secure_fw/partitions/partition_load_info.template
index 16d970991d..90529fb2a2 100644
--- a/secure_fw/partitions/partition_load_info.template
+++ b/secure_fw/partitions/partition_load_info.template
@@ -126,7 +126,7 @@ const struct partition_{{manifest.name|lower}}_load_info_t {{manifest.name|lower
| SERVICE_FLAG_NS_ACCESSIBLE
{% endif %}
{% if manifest.psa_framework_version > 1.0 and service.connection_based is sameas false %}
- | SERVICE_FLAG_STATELESS | {{"%x"|format(service.stateless_handle_index)}}
+ | SERVICE_FLAG_STATELESS | 0x{{"%x"|format(service.stateless_handle_index)}}
{% endif %}
{% if service.version_policy %}
| SERVICE_VERSION_POLICY_{{service.version_policy}},