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