uboot/arch/arm/mach-tegra/board186.c
<<
>>
Prefs
   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
   9int board_early_init_f(void)
  10{
  11        return 0;
  12}
  13
  14__weak int tegra_board_init(void)
  15{
  16        return 0;
  17}
  18
  19int board_init(void)
  20{
  21        return tegra_board_init();
  22}
  23
  24__weak int tegra_soc_board_init_late(void)
  25{
  26        return 0;
  27}
  28
  29int board_late_init(void)
  30{
  31        return tegra_soc_board_init_late();
  32}
  33