Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> |
| 3 | * (C) Copyright 2012 Renesas Solutions Corp. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 6 | */ |
| 7 | #include <common.h> |
| 8 | #include <asm/io.h> |
| 9 | #include <asm/arch/sys_proto.h> |
| 10 | |
Marek Vasut | ef5f197 | 2017-11-27 05:45:46 +0100 | [diff] [blame^] | 11 | #ifndef CONFIG_RCAR_GEN3 |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 12 | int checkboard(void) |
| 13 | { |
| 14 | printf("Board: %s\n", sysinfo.board_string); |
| 15 | return 0; |
| 16 | } |
Marek Vasut | ef5f197 | 2017-11-27 05:45:46 +0100 | [diff] [blame^] | 17 | #endif |