Merge branch 'master' of git://git.denx.de/u-boot-usb
[platform/kernel/u-boot.git] / arch / arm / mach-tegra / board186.c
1 /*
2  * Copyright (c) 2016, NVIDIA CORPORATION.
3  *
4  * SPDX-License-Identifier: GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <asm/arch/tegra.h>
9
10 DECLARE_GLOBAL_DATA_PTR;
11
12 int board_early_init_f(void)
13 {
14         return 0;
15 }
16
17 __weak int tegra_board_init(void)
18 {
19         return 0;
20 }
21
22 int board_init(void)
23 {
24         return tegra_board_init();
25 }
26
27 int board_late_init(void)
28 {
29         return 0;
30 }