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 | */ |
Paul Barker | 93565cc | 2023-11-01 20:05:53 +0000 | [diff] [blame] | 6 | |
Simon Glass | 691d719 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 7 | #include <init.h> |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 8 | #include <asm/io.h> |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 9 | |
Marek Vasut | 699e831 | 2018-05-02 11:51:46 +0200 | [diff] [blame] | 10 | #ifdef CONFIG_ARCH_RMOBILE_BOARD_STRING |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 11 | int checkboard(void) |
12 | { | ||||
Marek Vasut | 699e831 | 2018-05-02 11:51:46 +0200 | [diff] [blame] | 13 | printf("Board: %s\n", CONFIG_ARCH_RMOBILE_BOARD_STRING); |
Nobuhiro Iwamatsu | 1cdf248 | 2012-08-19 04:40:05 +0000 | [diff] [blame] | 14 | return 0; |
15 | } | ||||
Marek Vasut | ef5f197 | 2017-11-27 05:45:46 +0100 | [diff] [blame] | 16 | #endif |