board186.c 415 B

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