mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-09-29 17:51:26 +02:00
imx: ls102xa: 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: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
10e3d7ecd3
commit
22d69fd7a8
@ -219,9 +219,6 @@ void board_init_f(ulong dummy)
|
|||||||
pinctl);
|
pinctl);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Set global data pointer */
|
|
||||||
gd = &gdata;
|
|
||||||
|
|
||||||
/* Clear the BSS */
|
/* Clear the BSS */
|
||||||
memset(__bss_start, 0, __bss_end - __bss_start);
|
memset(__bss_start, 0, __bss_end - __bss_start);
|
||||||
|
|
||||||
|
@ -287,9 +287,6 @@ int board_early_init_f(void)
|
|||||||
#ifdef CONFIG_SPL_BUILD
|
#ifdef CONFIG_SPL_BUILD
|
||||||
void board_init_f(ulong dummy)
|
void board_init_f(ulong dummy)
|
||||||
{
|
{
|
||||||
/* Set global data pointer */
|
|
||||||
gd = &gdata;
|
|
||||||
|
|
||||||
/* Clear the BSS */
|
/* Clear the BSS */
|
||||||
memset(__bss_start, 0, __bss_end - __bss_start);
|
memset(__bss_start, 0, __bss_end - __bss_start);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user