]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/arm/mach-renesas/board.c
ARM: renesas: Rename arch-/mach-rmobile to arch-/mach-renesas
[thirdparty/u-boot.git] / arch / arm / mach-renesas / board.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
4 * (C) Copyright 2012 Renesas Solutions Corp.
5 */
6
7 #include <init.h>
8 #include <asm/io.h>
9
10 #ifdef CONFIG_ARCH_RENESAS_BOARD_STRING
11 int checkboard(void)
12 {
13 printf("Board: %s\n", CONFIG_ARCH_RENESAS_BOARD_STRING);
14 return 0;
15 }
16 #endif