]>
Commit | Line | Data |
---|---|---|
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 | ||
13 | int checkboard(void) | |
14 | { | |
15 | puts("BOARD: ESPT-GIGA\n"); | |
16 | return 0; | |
17 | } | |
18 | ||
19 | int board_init(void) | |
20 | { | |
21 | return 0; | |
22 | } | |
23 | ||
74d9c16a NI |
24 | void led_set_state(unsigned short value) |
25 | { | |
26 | } |