aboutsummaryrefslogtreecommitdiff
path: root/board/renesas/MigoR/migo_r.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2021-02-10 12:51:21 -0500
committerTom Rini <trini@konsulko.com>2021-02-15 10:16:23 -0500
commit5617351532fdf5d92b3af47d75b4fe1d800c377d (patch)
treedce73b0245aebb418c530aec37e1d4fdc49561f4 /board/renesas/MigoR/migo_r.c
parent865acad78f61c4bf1c8412aa511eb404cb6a3d4e (diff)
downloadu-boot-5617351532fdf5d92b3af47d75b4fe1d800c377d.zip
u-boot-5617351532fdf5d92b3af47d75b4fe1d800c377d.tar.gz
u-boot-5617351532fdf5d92b3af47d75b4fe1d800c377d.tar.bz2
sh: Remove MigoR board
This board has not been converted to CONFIG_DM by the deadline of v2020.01 and is missing other conversions which depend on this as well. Remove it. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/renesas/MigoR/migo_r.c')
-rw-r--r--board/renesas/MigoR/migo_r.c43
1 files changed, 0 insertions, 43 deletions
diff --git a/board/renesas/MigoR/migo_r.c b/board/renesas/MigoR/migo_r.c
deleted file mode 100644
index f2f4c65..0000000
--- a/board/renesas/MigoR/migo_r.c
+++ /dev/null
@@ -1,43 +0,0 @@
-// SPDX-License-Identifier: GPL-2.0+
-/*
- * Copyright (C) 2007
- * Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
- *
- * Copyright (C) 2007
- * Kenati Technologies, Inc.
- *
- * board/MigoR/migo_r.c
- */
-
-#include <common.h>
-#include <init.h>
-#include <net.h>
-#include <netdev.h>
-#include <asm/io.h>
-#include <asm/processor.h>
-
-int checkboard(void)
-{
- puts("BOARD: Renesas MigoR\n");
- return 0;
-}
-
-int board_init(void)
-{
- return 0;
-}
-
-void led_set_state (unsigned short value)
-{
-}
-
-#ifdef CONFIG_CMD_NET
-int board_eth_init(struct bd_info *bis)
-{
- int rc = 0;
-#ifdef CONFIG_SMC91111
- rc = smc91111_initialize(0, CONFIG_SMC91111_BASE);
-#endif
- return rc;
-}
-#endif