blob: d252faa91f92bbb59035765175bc924bfbd10e05 [file] [log] [blame]
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +09001/*
Wolfgang Denk61fb15c52007-12-27 01:52:50 +01002 * Copyright (C) 2007
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +09003 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +09006 */
7
8#include <common.h>
9#include <asm/processor.h>
10
11int checkboard(void)
12{
Nobuhiro Iwamatsu047375b2007-09-23 02:19:24 +090013 puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +090014 return 0;
15}
16
17int board_init(void)
18{
19 return 0;
20}
21
Nobuhiro Iwamatsu69df3c42007-05-13 21:01:03 +090022int board_late_init(void)
23{
24 return 0;
25}