• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
checkboard(void)10 int checkboard(void)
11 {
12 	puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
13 	return 0;
14 }
15 
board_init(void)16 int board_init(void)
17 {
18 	return 0;
19 }
20 
board_late_init(void)21 int board_late_init(void)
22 {
23 	return 0;
24 }
25