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