Sign in
qemu
/
u-boot
/
fe2ce09a0753634543c32cafe85eb87a625f76ca
/
.
/
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
;
}