blob: a10371f74e0ccee31861d53638a2eb4302a9b710 [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 */
6#include <common.h>
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