From 50033476c8350ad0ae80de86f9066724983b93bf Mon Sep 17 00:00:00 2001 From: Oussama Ghorbel <oussama.ghorbel@iopsys.eu> Date: Wed, 29 Jan 2020 16:08:32 +0100 Subject: [PATCH] fix compile error in prom.c --- arch/mips/lantiq/grx500/prom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/lantiq/grx500/prom.c b/arch/mips/lantiq/grx500/prom.c index c7b1bac78..14e60a0ea 100755 --- a/arch/mips/lantiq/grx500/prom.c +++ b/arch/mips/lantiq/grx500/prom.c @@ -158,7 +158,7 @@ static void plat_early_init_devtree(void) pr_info("Using Device tree (DTB) from bootloader %p (%p)\n", (void *)(fw_passed_dtb - 0x20000000), (void*)fw_passed_dtb); fw_passed_dtb -= 0x20000000; /* KEN: compensate for the change in BASE address for the kernel. */ #else - pr_info("Using Device tree (DTB) appended to kernel image %p\n", fw_passed_dtb); + pr_info("Using Device tree (DTB) appended to kernel image %p\n", (void *)fw_passed_dtb); #endif dtb = (void *)fw_passed_dtb; } -- GitLab