mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-20 10:13:09 +00:00
14 lines
205 B
C
14 lines
205 B
C
|
// 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;
|
||
|
}
|