aboutsummaryrefslogtreecommitdiff
path: root/board/renesas/ebisu
diff options
context:
space:
mode:
authorMarek Vasut <marek.vasut+renesas@mailbox.org>2023-05-31 20:33:04 +0200
committerMarek Vasut <marek.vasut+renesas@mailbox.org>2023-06-08 22:26:52 +0200
commit9fddd3612b2826717fb786b0ade2c13cc02793fe (patch)
treeb348c4b4823dc3aafe98b4576e5cc228b4abd398 /board/renesas/ebisu
parent79fedab62af1efe301a9aaa6ecb4cb49431cac83 (diff)
downloadu-boot-9fddd3612b2826717fb786b0ade2c13cc02793fe.zip
u-boot-9fddd3612b2826717fb786b0ade2c13cc02793fe.tar.gz
u-boot-9fddd3612b2826717fb786b0ade2c13cc02793fe.tar.bz2
ARM: rmobile: Introduce weak default board_init()
Introduce weak default board_init() in rcar-common/common.c , which allows complete removal of ebisu.c and condor.c at the same time . Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
Diffstat (limited to 'board/renesas/ebisu')
-rw-r--r--board/renesas/ebisu/Makefile2
-rw-r--r--board/renesas/ebisu/ebisu.c14
2 files changed, 1 insertions, 15 deletions
diff --git a/board/renesas/ebisu/Makefile b/board/renesas/ebisu/Makefile
index 1fd9a03..956ce8a 100644
--- a/board/renesas/ebisu/Makefile
+++ b/board/renesas/ebisu/Makefile
@@ -9,5 +9,5 @@
ifdef CONFIG_SPL_BUILD
obj-y := ../rcar-common/gen3-spl.o
else
-obj-y := ebisu.o ../rcar-common/common.o
+obj-y := ../rcar-common/common.o
endif
diff --git a/board/renesas/ebisu/ebisu.c b/board/renesas/ebisu/ebisu.c
deleted file mode 100644
index 182e980..0000000
--- a/board/renesas/ebisu/ebisu.c
+++ /dev/null
@@ -1,14 +0,0 @@
-// 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;
-}