From 4ef449c15a4055d92632cb7e72267f525a7e2fca Mon Sep 17 00:00:00 2001 From: Manish Pandey Date: Fri, 12 Nov 2021 12:59:09 +0000 Subject: 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 Change-Id: Ic6811cc1788c698adde0807e5f8ab5290a900a26 --- bl32/tsp/tsp_interrupt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bl32') 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 +#include #include @@ -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", -- cgit v1.2.3