mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
Merge "fix: use correct printf format for uint64_t" into integration
This commit is contained in:
commit
2242773ddb
5 changed files with 10 additions and 5 deletions
|
@ -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",
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
* SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
#include <libfdt.h>
|
||||
|
||||
#include <platform_def.h>
|
||||
|
@ -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);
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <inttypes.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
|
||||
|
@ -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
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <inttypes.h>
|
||||
|
||||
#include <arch_helpers.h>
|
||||
#include <common/debug.h>
|
||||
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue