]> git.sur5r.net Git - u-boot/blob - board_early_init_r.c
28c7f822287308bb8f3328be65aaa0a720567b51
[u-boot] / board_early_init_r.c
1 /*
2  * Copyright (C) 2014-2015 Masahiro Yamada <yamada.masahiro@socionext.com>
3  *
4  * SPDX-License-Identifier:     GPL-2.0+
5  */
6
7 #include <common.h>
8 #include <mach/micro-support-card.h>
9
10 int board_early_init_r(void)
11 {
12         support_card_late_init();
13         return 0;
14 }