mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
fix(mt8195): use correct print format for uint64_t
sha 4ce3e99a3
introduced printf format specifiers for fixed width
types, which uses PRI*64 instead of "ll" for 64 bit variables.
Change-Id: I09a8d174694d4b170a6ef2e4a03df13adc829c00
Signed-off-by: Madhukar Pappireddy <madhukar.pappireddy@arm.com>
This commit is contained in:
parent
66c3906e4c
commit
964ee4e6be
1 changed files with 4 additions and 1 deletions
|
@ -3,6 +3,9 @@
|
|||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <inttypes.h>
|
||||
|
||||
#include <common/debug.h>
|
||||
#include <lib/mmio.h>
|
||||
#include <mt_dp.h>
|
||||
|
@ -28,7 +31,7 @@ int32_t dp_secure_handler(uint64_t cmd, uint64_t para, uint32_t *val)
|
|||
uint32_t fldmask = 0UL;
|
||||
|
||||
if ((cmd > DP_ATF_CMD_COUNT) || (val == NULL)) {
|
||||
INFO("dp_secure_handler error cmd 0x%llx\n", cmd);
|
||||
INFO("dp_secure_handler error cmd 0x%" PRIx64 "\n", cmd);
|
||||
return MTK_SIP_E_INVALID_PARAM;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue