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