Skip to content
Snippets Groups Projects
Commit 4116ee1b authored by Oussama Ghorbel's avatar Oussama Ghorbel
Browse files

fix compile error in prom.c

parent f747be4c
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment