mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-20 19:44:23 +00:00
Merge "fix(mt8195): use correct print format for uint64_t" into integration
This commit is contained in:
commit
d15e4e085a
1 changed files with 4 additions and 1 deletions
|
@ -3,6 +3,9 @@
|
||||||
*
|
*
|
||||||
* SPDX-License-Identifier: BSD-3-Clause
|
* SPDX-License-Identifier: BSD-3-Clause
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <inttypes.h>
|
||||||
|
|
||||||
#include <common/debug.h>
|
#include <common/debug.h>
|
||||||
#include <lib/mmio.h>
|
#include <lib/mmio.h>
|
||||||
#include <mt_dp.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;
|
uint32_t fldmask = 0UL;
|
||||||
|
|
||||||
if ((cmd > DP_ATF_CMD_COUNT) || (val == NULL)) {
|
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;
|
return MTK_SIP_E_INVALID_PARAM;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue