mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-12-08 02:51:42 +01:00
There is no need to pull in all those headers as the board file is basically empty. Drop them all. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
15 lines
246 B
C
15 lines
246 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* board/renesas/condor/condor.c
|
|
* This file is Condor board support.
|
|
*
|
|
* Copyright (C) 2019 Marek Vasut <marek.vasut+renesas@gmail.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
int board_init(void)
|
|
{
|
|
return 0;
|
|
}
|