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

fix compile error in prom.c

parent fc393f56
No related tags found
No related merge requests found
...@@ -158,7 +158,7 @@ static void plat_early_init_devtree(void) ...@@ -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); 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. */ fw_passed_dtb -= 0x20000000; /* KEN: compensate for the change in BASE address for the kernel. */
#else #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 #endif
dtb = (void *)fw_passed_dtb; 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