2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2012-08-19 04:40:05 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
|
|
|
* (C) Copyright 2012 Renesas Solutions Corp.
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
2020-05-10 17:40:02 +00:00
|
|
|
#include <init.h>
|
2012-08-19 04:40:05 +00:00
|
|
|
#include <asm/io.h>
|
|
|
|
|
2018-05-02 09:51:46 +00:00
|
|
|
#ifdef CONFIG_ARCH_RMOBILE_BOARD_STRING
|
2012-08-19 04:40:05 +00:00
|
|
|
int checkboard(void)
|
|
|
|
{
|
2018-05-02 09:51:46 +00:00
|
|
|
printf("Board: %s\n", CONFIG_ARCH_RMOBILE_BOARD_STRING);
|
2012-08-19 04:40:05 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2017-11-27 04:45:46 +00:00
|
|
|
#endif
|