]> git.sur5r.net Git - u-boot/blob - board/ms7750se/ms7750se.c
Merge branch 'master' of git://git.denx.de/u-boot-sunxi
[u-boot] / board / ms7750se / ms7750se.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2007
4  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
5  */
6
7 #include <common.h>
8 #include <asm/processor.h>
9
10 int checkboard(void)
11 {
12         puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
13         return 0;
14 }
15
16 int board_init(void)
17 {
18         return 0;
19 }
20
21 int board_late_init(void)
22 {
23         return 0;
24 }