mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-12 13:18:52 +00:00
5b90b22407
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>
14 lines
243 B
C
14 lines
243 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* board/renesas/ebisu/ebisu.c
|
|
* This file is Ebisu board support.
|
|
*
|
|
* Copyright (C) 2018 Marek Vasut <marek.vasut+renesas@gmail.com>
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
int board_init(void)
|
|
{
|
|
return 0;
|
|
}
|