blob: 79c7e02671f2fc87d485da4c96665fe9fe865aa6 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu940103d2012-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 Iwamatsu940103d2012-08-19 04:40:05 +00005 */
Paul Barker442ce1c2023-11-01 20:05:53 +00006
Simon Glass97589732020-05-10 11:40:02 -06007#include <init.h>
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +00008#include <asm/io.h>
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +00009
Marek Vasut920922a2018-05-02 11:51:46 +020010#ifdef CONFIG_ARCH_RMOBILE_BOARD_STRING
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +000011int checkboard(void)
12{
Marek Vasut920922a2018-05-02 11:51:46 +020013 printf("Board: %s\n", CONFIG_ARCH_RMOBILE_BOARD_STRING);
Nobuhiro Iwamatsu940103d2012-08-19 04:40:05 +000014 return 0;
15}
Marek Vasutba7b4dd2017-11-27 05:45:46 +010016#endif