blob: 903f3a11f7bf1cecf9ea4639ff1860d16482946d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu45254852007-05-13 21:01:03 +09002/*
Wolfgang Denk0a5c2142007-12-27 01:52:50 +01003 * Copyright (C) 2007
Nobuhiro Iwamatsu45254852007-05-13 21:01:03 +09004 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Nobuhiro Iwamatsu45254852007-05-13 21:01:03 +09005 */
6
7#include <common.h>
8#include <asm/processor.h>
9
10int checkboard(void)
11{
Nobuhiro Iwamatsuf2527452007-09-23 02:19:24 +090012 puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
Nobuhiro Iwamatsu45254852007-05-13 21:01:03 +090013 return 0;
14}
15
16int board_init(void)
17{
Nobuhiro Iwamatsu45254852007-05-13 21:01:03 +090018 return 0;
19}
20
21int board_late_init(void)
22{
23 return 0;
24}