mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
11 lines
171 B
C
11 lines
171 B
C
|
// SPDX-License-Identifier: GPL-2.0+
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <asm/arch-fsl-layerscape/soc.h>
|
||
|
|
||
|
int board_early_init_f(void)
|
||
|
{
|
||
|
fsl_lsch3_early_init_f();
|
||
|
return 0;
|
||
|
}
|