mirror of
https://xff.cz/git/u-boot/
synced 2025-10-08 11:45:18 +02:00
Remove <common.h> from this board vendor directory and when needed add missing include files directly. Reviewed-by: Chris Packham <chris.packham@alliedtelesis.co.nz> Signed-off-by: Tom Rini <trini@konsulko.com>
14 lines
205 B
C
14 lines
205 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#include <config.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;
|
|
}
|