link.c 191 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) 2014 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. int arch_early_init_r(void)
  8. {
  9. return 0;
  10. }
  11. int board_early_init_r(void)
  12. {
  13. return 0;
  14. }