[PATCH] MIPS: bootm: fix format string type mismatch
Ahmad Fatoum
a.fatoum at pengutronix.de
Tue Sep 12 02:58:09 PDT 2023
While we always have sizeof (struct device_node *) == sizeof(ulong),
clangd warns about mixing them as arguments to functions with printf-style
format strings. Add a cast to silence the warning.
Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
---
arch/mips/lib/bootm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/mips/lib/bootm.c b/arch/mips/lib/bootm.c
index 19d82ec37530..a5bfc6c88c17 100644
--- a/arch/mips/lib/bootm.c
+++ b/arch/mips/lib/bootm.c
@@ -62,7 +62,7 @@ static int do_bootm_elf(struct image_data *data)
}
pr_info("Starting application at 0x%08lx, dts 0x%08lx...\n",
- data->os_address, data->of_root_node);
+ data->os_address, (ulong)data->of_root_node);
if (data->dryrun)
goto bootm_free_fdt;
--
2.39.2
More information about the barebox
mailing list