xref: /openbmc/u-boot/board/ms7750se/ms7750se.c (revision 06feb5d0)
1 /*
2  * Copyright (C) 2007
3  * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4  *
5  * SPDX-License-Identifier:	GPL-2.0+
6  */
7 
8 #include <common.h>
9 #include <asm/processor.h>
10 
11 int checkboard(void)
12 {
13 	puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
14 	return 0;
15 }
16 
17 int board_init(void)
18 {
19 	return 0;
20 }
21 
22 int board_late_init(void)
23 {
24 	return 0;
25 }
26