diff options
author | Tom Rini | 2017-01-11 10:45:48 -0500 |
---|---|---|
committer | Tom Rini | 2017-01-11 10:45:48 -0500 |
commit | 4386feb73da7946fc79b55c4fa41c6dd66dcb2e2 (patch) | |
tree | a5df2141bf716d06e9daa0521e77aa9a63293007 /board | |
parent | c8ac6449797951414cec471e759e7bb0c46f490f (diff) |
SPL: Adjust more debug prints for ulong entry_point
With entry_point now being an unsigned long we need to adapt the last
two debug prints to use %lX not %X.
Fixes: 11e1479b9e67 ("SPL: make struct spl_image 64-bit safe")
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/freescale/common/fsl_chain_of_trust.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/common/fsl_chain_of_trust.c b/board/freescale/common/fsl_chain_of_trust.c index dea231b866f..438e7819576 100644 --- a/board/freescale/common/fsl_chain_of_trust.c +++ b/board/freescale/common/fsl_chain_of_trust.c @@ -151,7 +151,7 @@ void __noreturn jump_to_image_no_args(struct spl_image_info *spl_image) * may return back in case of non-fatal failures. */ - debug("image entry point: 0x%X\n", spl_image->entry_point); + debug("image entry point: 0x%lX\n", spl_image->entry_point); image_entry(); } #endif /* ifdef CONFIG_SPL_FRAMEWORK */ |