board_early_init_r.c 248 B

123456789101112131415
  1. /*
  2. * Copyright (C) 2014-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include "micro-support-card.h"
  8. int board_early_init_r(void)
  9. {
  10. support_card_late_init();
  11. return 0;
  12. }