mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 04:48:14 +00:00
fix(spmd): error macro to use correct print format
Following merge of [1] then [2] broke the build because of an incorrect format specifier in an ERROR macro. Fix to use the correct print format. [1] https://review.trustedfirmware.org/c/TF-A/trusted-firmware-a/+/5437 [2] https://review.trustedfirmware.org/c/TF-A/trusted-firmware-a/+/9211 Signed-off-by: Olivier Deprez <olivier.deprez@arm.com> Change-Id: I14d4c31091f6a5f4c3252f6d810e9d2bb2f545c4
This commit is contained in:
parent
a127b99d5a
commit
0c23e6f44d
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ static uint64_t spmd_secure_interrupt_handler(uint32_t id,
|
||||||
|
|
||||||
rc = spmd_spm_core_sync_entry(ctx);
|
rc = spmd_spm_core_sync_entry(ctx);
|
||||||
if (rc != 0ULL) {
|
if (rc != 0ULL) {
|
||||||
ERROR("%s failed (%llu) on CPU%u\n", __func__, rc, linear_id);
|
ERROR("%s failed (%" PRId64 ") on CPU%u\n", __func__, rc, linear_id);
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx->secure_interrupt_ongoing = false;
|
ctx->secure_interrupt_ongoing = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue