xref: /openbmc/u-boot/arch/arm/mach-tegra/board186.c (revision e8f80a5a)
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2016, NVIDIA CORPORATION.
4  */
5 
6 #include <common.h>
7 #include <asm/arch/tegra.h>
8 
board_early_init_f(void)9 int board_early_init_f(void)
10 {
11 	return 0;
12 }
13 
tegra_board_init(void)14 __weak int tegra_board_init(void)
15 {
16 	return 0;
17 }
18 
board_init(void)19 int board_init(void)
20 {
21 	return tegra_board_init();
22 }
23 
tegra_soc_board_init_late(void)24 __weak int tegra_soc_board_init_late(void)
25 {
26 	return 0;
27 }
28 
board_late_init(void)29 int board_late_init(void)
30 {
31 	return tegra_soc_board_init_late();
32 }
33