blob: 79c7e02671f2fc87d485da4c96665fe9fe865aa6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +00002/*
3 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
4 * (C) Copyright 2012 Renesas Solutions Corp.
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +00005 */
Paul Barker93565cc2023-11-01 20:05:53 +00006
Simon Glass691d7192020-05-10 11:40:02 -06007#include <init.h>
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +00008#include <asm/io.h>
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +00009
Marek Vasut699e8312018-05-02 11:51:46 +020010#ifdef CONFIG_ARCH_RMOBILE_BOARD_STRING
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000011int checkboard(void)
12{
Marek Vasut699e8312018-05-02 11:51:46 +020013 printf("Board: %s\n", CONFIG_ARCH_RMOBILE_BOARD_STRING);
Nobuhiro Iwamatsu1cdf2482012-08-19 04:40:05 +000014 return 0;
15}
Marek Vasutef5f1972017-11-27 05:45:46 +010016#endif