summaryrefslogtreecommitdiff
path: root/bl32
diff options
context:
space:
mode:
authorManish Pandey <manish.pandey2@arm.com>2021-11-12 12:59:09 +0000
committerManish Pandey <manish.pandey2@arm.com>2021-11-12 13:02:02 +0000
commit4ef449c15a4055d92632cb7e72267f525a7e2fca (patch)
tree2176da7a5cbb4fab6d2e5aaf895860412a1b39f8 /bl32
parent66c3906e4c32d675eb06bd081de8a3359f76b84c (diff)
downloadarm-trusted-firmware-4ef449c15a4055d92632cb7e72267f525a7e2fca.tar.gz
fix: use correct printf format for uint64_t
sha 4ce3e99a3 introduced printf format specifiers for fixed width types, which uses PRI*64 instead of "ll" for 64 bit values. Signed-off-by: Manish Pandey <manish.pandey2@arm.com> Change-Id: Ic6811cc1788c698adde0807e5f8ab5290a900a26
Diffstat (limited to 'bl32')
-rw-r--r--bl32/tsp/tsp_interrupt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bl32/tsp/tsp_interrupt.c b/bl32/tsp/tsp_interrupt.c
index 4e500b3ca..430b5ddb8 100644
--- a/bl32/tsp/tsp_interrupt.c
+++ b/bl32/tsp/tsp_interrupt.c
@@ -5,6 +5,7 @@
*/
#include <assert.h>
+#include <inttypes.h>
#include <platform_def.h>
@@ -36,7 +37,7 @@ void tsp_update_sync_sel1_intr_stats(uint32_t type, uint64_t elr_el3)
#if LOG_LEVEL >= LOG_LEVEL_VERBOSE
spin_lock(&console_lock);
- VERBOSE("TSP: cpu 0x%lx sync s-el1 interrupt request from 0x%llx\n",
+ VERBOSE("TSP: cpu 0x%lx sync s-el1 interrupt request from 0x%" PRIx64 "\n",
read_mpidr(), elr_el3);
VERBOSE("TSP: cpu 0x%lx: %d sync s-el1 interrupt requests,"
" %d sync s-el1 interrupt returns\n",