Gitiles
Code Review
Sign In
git01.mediatek.com
/
filogic
/
uboot
/
abb9a04d0794c6d223d648898c021945de80a49a
/
.
/
board
/
alliedtelesis
/
x240
/
x240.c
blob: 0c4f8e03b8596e301cd64a6db4d2dc86c54ec92f [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0+
#include
<common.h>
#include
<asm/global_data.h>
DECLARE_GLOBAL_DATA_PTR
;
int
board_init
(
void
)
{
gd
->
bd
->
bi_boot_params
=
CFG_SYS_SDRAM_BASE
+
0x100
;
return
0
;
}