]> Git Repo - u-boot.git/blame - board/espt/espt.c
SPDX: Convert all of our single license tags to Linux Kernel style
[u-boot.git] / board / espt / espt.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
74d9c16a
NI
2/*
3 * Copyright (C) 2009 Renesas Solutions Corp.
4 * Copyright (C) 2009 Nobuhiro Iwamatsu <[email protected]>
5 *
6 * board/espt/espt.c
74d9c16a
NI
7 */
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
74d9c16a
NI
24void led_set_state(unsigned short value)
25{
26}
This page took 0.261259 seconds and 4 git commands to generate.