Skip to content

Commit 0fd8bb6

Browse files
authored
Merge pull request #12257 from Patater/psa-setup-tpl-fix
psa: Ensure spaces before partition name comment
2 parents 4c4ed0a + 2a2ac5c commit 0fd8bb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/psa/templates/psa_setup.c.tpl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ void {{partition.name|lower}}_init(spm_partition_t *partition)
186186
{# -------------- spm_db_entry(partition) ----------------------------------- #}
187187
{% macro spm_db_entry(partition) -%}
188188

189-
/* {{partition.name|upper}} */
189+
/* {{partition.name|upper}} */
190190
{
191191
.partition_id = {{partition.name|upper}}_ID,
192192
.thread_id = 0,
@@ -214,7 +214,7 @@ void {{partition.name|lower}}_init(spm_partition_t *partition)
214214
/****************** SPM DB initialization *************************************/
215215
spm_partition_t g_partitions[] = {
216216
{% for partition in service_partitions %}
217-
{{spm_db_entry(partition)}}
217+
{{spm_db_entry(partition)}}
218218

219219
{% endfor %}
220220
#ifdef USE_PSA_TEST_PARTITIONS

0 commit comments

Comments
 (0)