Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 74d9c16 | 2009-06-25 16:31:26 +0900 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2009 Renesas Solutions Corp. |
| 4 | * Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> |
| 5 | * |
| 6 | * board/espt/espt.c |
Nobuhiro Iwamatsu | 74d9c16 | 2009-06-25 16:31:26 +0900 | [diff] [blame] | 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 | |
Nobuhiro Iwamatsu | 74d9c16 | 2009-06-25 16:31:26 +0900 | [diff] [blame] | 24 | void led_set_state(unsigned short value) |
| 25 | { |
| 26 | } |