Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> |
| 4 | * (C) Copyright 2012 Renesas Solutions Corp. |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 5 | */ |
| 6 | #include <common.h> |
| 7 | #include <asm/io.h> |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 8 | |
Marek Vasut | 699e831 | 2018-05-02 11:51:46 +0200 | [diff] [blame] | 9 | #ifdef CONFIG_ARCH_RMOBILE_BOARD_STRING |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 10 | int checkboard(void) |
| 11 | { |
Marek Vasut | 699e831 | 2018-05-02 11:51:46 +0200 | [diff] [blame] | 12 | printf("Board: %s\n", CONFIG_ARCH_RMOBILE_BOARD_STRING); |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 13 | return 0; |
| 14 | } |
Marek Vasut | ef5f197 | 2017-11-27 05:45:46 +0100 | [diff] [blame] | 15 | #endif |