From 55ce66ca7302cad0175fb6dc61df361659800b3e Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 7 Jun 2021 09:37:51 +0200 Subject: arm/fvp: Fix integer from pointer without a cast Update #4202. --- bsps/arm/fvp/start/bspstarthooks.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bsps') diff --git a/bsps/arm/fvp/start/bspstarthooks.c b/bsps/arm/fvp/start/bspstarthooks.c index b990dde30e..f0087efa06 100644 --- a/bsps/arm/fvp/start/bspstarthooks.c +++ b/bsps/arm/fvp/start/bspstarthooks.c @@ -79,7 +79,7 @@ void bsp_start_hook_0( void ) arm_gic_irq_initialize_secondary_cpu(); /* Change the VBAR from the start to the normal vector table */ - _AArch32_Write_vbar( bsp_vector_table_begin ); + _AArch32_Write_vbar( (uint32_t) bsp_vector_table_begin ); bsp_interrupt_vector_enable( ARM_GIC_IRQ_SGI_0 ); _SMP_Start_multitasking_on_secondary_processor( -- cgit v1.2.3