]> git.ipfire.org Git - people/ms/u-boot.git/blame - board/ms7750se/ms7750se.c
Merge git://git.denx.de/u-boot-sh
[people/ms/u-boot.git] / board / ms7750se / ms7750se.c
CommitLineData
69df3c4d 1/*
61fb15c5 2 * Copyright (C) 2007
69df3c4d
NI
3 * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
69df3c4d
NI
6 */
7
8#include <common.h>
9#include <asm/processor.h>
10
11int checkboard(void)
12{
047375bf 13 puts("BOARD: SH7750/SH7750S/SH7750R Solution Engine\n");
69df3c4d
NI
14 return 0;
15}
16
17int board_init(void)
18{
19 return 0;
20}
21
69df3c4d
NI
22int board_late_init(void)
23{
24 return 0;
25}