9
0
Fork 0

ARM: phycard-imx6: fixup for barebox_arm_entry signature change

This board wasn't changed properly, as it was merged in the short
timeframe where the signature change waited to be applied. Change
it now to get rid of the compiler warning.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2014-05-06 21:28:16 +02:00 committed by Sascha Hauer
parent 03c0e1511e
commit 5545b82e72
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ extern char __dtb_imx6q_phytec_pbaa03_start[];
static void __noreturn start_imx6q_phytec_pbaa03_common(uint32_t size)
{
uint32_t fdt;
void *fdt;
arm_cpu_lowlevel_init();
@ -66,7 +66,7 @@ static void __noreturn start_imx6q_phytec_pbaa03_common(uint32_t size)
if (IS_ENABLED(CONFIG_DEBUG_LL))
setup_uart();
fdt = (uint32_t)__dtb_imx6q_phytec_pbaa03_start - get_runtime_offset();
fdt = __dtb_imx6q_phytec_pbaa03_start - get_runtime_offset();
barebox_arm_entry(0x10000000, size, fdt);
}