From: Stefan Roese Date: Tue, 30 Sep 2014 10:41:17 +0000 (+0200) Subject: ARM: mx6: gw_ventana: Remove superfluous memset of GD in board_init_f X-Git-Tag: v2014.10~3^2~19^2~36 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1dd42e313b1b7416d756d9fd9899b300fd238793;p=platform%2Fkernel%2Fu-boot.git ARM: mx6: gw_ventana: Remove superfluous memset of GD in board_init_f Zeroing GD in board_init_f() is not needed any more. As its now done in crt0.S. The patch that clears the GD in crt0.S is this one: aae2aef9 [arm: Set up global data before board_init_f()] from Simon. Signed-off-by: Stefan Roese Cc: Tim Harvey Cc: Stefano Babic Acked-by: Tim Harvey --- diff --git a/board/gateworks/gw_ventana/gw_ventana_spl.c b/board/gateworks/gw_ventana/gw_ventana_spl.c index 9fc253b..ca35b3c 100644 --- a/board/gateworks/gw_ventana/gw_ventana_spl.c +++ b/board/gateworks/gw_ventana/gw_ventana_spl.c @@ -402,13 +402,6 @@ void board_init_f(ulong dummy) struct ventana_board_info ventana_info; int board_model; - /* - * Zero out global data: - * - this shoudl be done by crt0.S - * - failure to zero it will cause i2c_setup to fail - */ - memset((void *)gd, 0, sizeof(struct global_data)); - /* setup AIPS and disable watchdog */ arch_cpu_init();