Skip to content
Snippets Groups Projects
Commit 10e3d7ec authored by Simon Glass's avatar Simon Glass Committed by Tom Rini
Browse files

imx: woodburn: Remove reference to gdata


The global_data pointer (gd) has already been set before board_init_f()
is called. We should not assign it again. We should also not use gdata since
it is going away.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
Acked-by: default avatarStefano Babic <sbabic@denx.de>
parent 57241b1d
No related branches found
No related tags found
Loading
...@@ -137,9 +137,6 @@ void board_init_f(ulong dummy) ...@@ -137,9 +137,6 @@ void board_init_f(ulong dummy)
/* Clear the BSS. */ /* Clear the BSS. */
memset(__bss_start, 0, __bss_end - __bss_start); memset(__bss_start, 0, __bss_end - __bss_start);
/* Set global data pointer. */
gd = &gdata;
preloader_console_init(); preloader_console_init();
timer_init(); timer_init();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment