From 4ef449c15a4055d92632cb7e72267f525a7e2fca Mon Sep 17 00:00:00 2001 From: Manish Pandey Date: Fri, 12 Nov 2021 12:59:09 +0000 Subject: [PATCH] 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 ++- drivers/partition/partition.c | 3 ++- drivers/st/spi/stm32_qspi.c | 3 ++- plat/brcm/board/common/board_arm_trusted_boot.c | 3 ++- plat/brcm/board/stingray/src/brcm_pm_ops.c | 3 ++- 5 files changed, 10 insertions(+), 5 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 +#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", diff --git a/drivers/partition/partition.c b/drivers/partition/partition.c index 68133eaf4..fdea10dbd 100644 --- a/drivers/partition/partition.c +++ b/drivers/partition/partition.c @@ -5,6 +5,7 @@ */ #include +#include #include #include @@ -31,7 +32,7 @@ static void dump_entries(int num) name[len + j] = ' '; } name[EFI_NAMELEN - 1] = '\0'; - VERBOSE("%d: %s %llx-%llx\n", i + 1, name, list.list[i].start, + VERBOSE("%d: %s %" PRIx64 "-%" PRIx64 "\n", i + 1, name, list.list[i].start, list.list[i].start + list.list[i].length - 4); } } diff --git a/drivers/st/spi/stm32_qspi.c b/drivers/st/spi/stm32_qspi.c index d67f8313f..4b1a0296c 100644 --- a/drivers/st/spi/stm32_qspi.c +++ b/drivers/st/spi/stm32_qspi.c @@ -4,6 +4,7 @@ * SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause */ +#include #include #include @@ -244,7 +245,7 @@ static int stm32_qspi_exec_op(const struct spi_mem_op *op) uint8_t mode = QSPI_CCR_IND_WRITE; int ret; - VERBOSE("%s: cmd:%x mode:%d.%d.%d.%d addr:%llx len:%x\n", + VERBOSE("%s: cmd:%x mode:%d.%d.%d.%d addr:%" PRIx64 " len:%x\n", __func__, op->cmd.opcode, op->cmd.buswidth, op->addr.buswidth, op->dummy.buswidth, op->data.buswidth, op->addr.val, op->data.nbytes); diff --git a/plat/brcm/board/common/board_arm_trusted_boot.c b/plat/brcm/board/common/board_arm_trusted_boot.c index 7a4dad013..da18c31d0 100644 --- a/plat/brcm/board/common/board_arm_trusted_boot.c +++ b/plat/brcm/board/common/board_arm_trusted_boot.c @@ -5,6 +5,7 @@ */ #include +#include #include #include @@ -344,7 +345,7 @@ void sotp_dump_rows(uint32_t start_row, uint32_t end_row) for (rownum = start_row; rownum <= end_row; rownum++) { rowdata = sotp_mem_read(rownum, SOTP_ROW_NO_ECC); - INFO("%d 0x%llx\n", rownum, rowdata); + INFO("%d 0x%" PRIx64 "\n", rownum, rowdata); } } #endif diff --git a/plat/brcm/board/stingray/src/brcm_pm_ops.c b/plat/brcm/board/stingray/src/brcm_pm_ops.c index 03a604c15..5e07fac08 100644 --- a/plat/brcm/board/stingray/src/brcm_pm_ops.c +++ b/plat/brcm/board/stingray/src/brcm_pm_ops.c @@ -6,6 +6,7 @@ #include #include +#include #include #include @@ -119,7 +120,7 @@ static void brcm_power_down_common(void) standbywfil2 = CDRU_PROC_EVENT_CLEAR__IH3_CDRU_STANDBYWFIL2; break; default: - ERROR("Invalid cluster #%llx\n", MPIDR_AFFLVL1_VAL(mpidr)); + ERROR("Invalid cluster #%" PRIx64 "\n", MPIDR_AFFLVL1_VAL(mpidr)); return; } /* Clear the WFI status bit */