mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-03 10:17:21 +00:00

Remove <common.h> from this board vendor directory and when needed add missing include files directly. Reviewed-by: William Zhang <william.zhang@broadcom.com> Signed-off-by: Tom Rini <trini@konsulko.com>
34 lines
419 B
C
34 lines
419 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2022 Broadcom Ltd.
|
|
*/
|
|
|
|
#include <fdtdec.h>
|
|
|
|
int board_init(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int dram_init(void)
|
|
{
|
|
if (fdtdec_setup_mem_size_base() != 0)
|
|
puts("fdtdec_setup_mem_size_base() has failed\n");
|
|
|
|
return 0;
|
|
}
|
|
|
|
int dram_init_banksize(void)
|
|
{
|
|
fdtdec_setup_memory_banksize();
|
|
return 0;
|
|
}
|
|
|
|
int print_cpuinfo(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
__weak void reset_cpu(void)
|
|
{
|
|
}
|