• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2009 Renesas Solutions Corp.
4  * Copyright (C) 2009 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
5  *
6  * board/espt/espt.c
7  */
8 
9 #include <common.h>
10 #include <asm/io.h>
11 #include <asm/processor.h>
12 
checkboard(void)13 int checkboard(void)
14 {
15 	puts("BOARD: ESPT-GIGA\n");
16 	return 0;
17 }
18 
board_init(void)19 int board_init(void)
20 {
21 	return 0;
22 }
23 
led_set_state(unsigned short value)24 void led_set_state(unsigned short value)
25 {
26 }
27