mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-12 14:23:00 +00:00
93565cc94c
For most source files we can just drop <common.h>. We need to add an include for <asm/u-boot.h> in a couple of places. Also sort the include list in memmap-gen3.c while we're here. Signed-off-by: Paul Barker <paul.barker.ct@bp.renesas.com>
16 lines
346 B
C
16 lines
346 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* (C) Copyright 2012 Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
|
|
* (C) Copyright 2012 Renesas Solutions Corp.
|
|
*/
|
|
|
|
#include <init.h>
|
|
#include <asm/io.h>
|
|
|
|
#ifdef CONFIG_ARCH_RMOBILE_BOARD_STRING
|
|
int checkboard(void)
|
|
{
|
|
printf("Board: %s\n", CONFIG_ARCH_RMOBILE_BOARD_STRING);
|
|
return 0;
|
|
}
|
|
#endif
|