blob: 8cdaf6300c551e5da368f25b8a8908483778d930 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu74d9c162009-06-25 16:31:26 +09002/*
3 * Copyright (C) 2009 Renesas Solutions Corp.
4 * Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5 *
6 * board/espt/espt.c
Nobuhiro Iwamatsu74d9c162009-06-25 16:31:26 +09007 */
8
9#include <common.h>
10#include <asm/io.h>
11#include <asm/processor.h>
12
13int checkboard(void)
14{
15 puts("BOARD: ESPT-GIGA\n");
16 return 0;
17}
18
19int board_init(void)
20{
21 return 0;
22}
23
Nobuhiro Iwamatsu74d9c162009-06-25 16:31:26 +090024void led_set_state(unsigned short value)
25{
26}