summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Porotchkin <kostap@marvell.com>2018-07-02 16:36:07 +0300
committerKostya Porotchkin <kostap@marvell.com>2018-07-02 18:32:03 +0300
commitda29fc37c193c0a0a0ef04fa63b6049220c02d02 (patch)
treeda7e79758d6e4e9c24732358b4ff64c583da4b26
parent396227e2a97c1e2c320b8493911265ee3c1ce235 (diff)
fix: driver: marvell: fix print format in mc_trustzone driver
Fix the format according to latest data type updates. Change-Id: Ic9f5f50c25fa86af6143d8e4757eb6a396e2c8dd Signed-off-by: Konstantin Porotchkin <kostap@marvell.com> Reviewed-on: http://vgitil04.il.marvell.com:8080/57587 Tested-by: iSoC Platform CI <ykjenk@marvell.com> Reviewed-by: Grzegorz Jaszczyk <jaz@semihalf.com> Reviewed-by: Igal Liberman <igall@marvell.com>
-rw-r--r--drivers/marvell/mc_trustzone/mc_trustzone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/marvell/mc_trustzone/mc_trustzone.c b/drivers/marvell/mc_trustzone/mc_trustzone.c
index 49aeb9bc..6062379f 100644
--- a/drivers/marvell/mc_trustzone/mc_trustzone.c
+++ b/drivers/marvell/mc_trustzone/mc_trustzone.c
@@ -47,7 +47,7 @@ void tz_enable_win(int ap_index, const struct addr_map_win *win, int win_id)
if (base & 0xfff) {
base = base & ~0xfff;
- WARN("Attempt to open MC TrustZone window at 0x%x, truncate to 0x%x\n",
+ WARN("Attempt to open MC TrustZone window at 0x%llx, truncate to 0x%x\n",
win->base_addr, base);
}