summaryrefslogtreecommitdiffstats
path: root/board/openrisc/openrisc-generic/openrisc-generic.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2017-03-14 11:08:12 -0400
committerTom Rini <trini@konsulko.com>2017-04-05 13:52:34 -0400
commit70cc0c34b638fbf99f0984dc53312cd8479c99a7 (patch)
treed0ef8822cc0f6e71c300795cb6be3260414d11bc /board/openrisc/openrisc-generic/openrisc-generic.c
parent936478e797a87bcd4e002bf70430b6f58584b155 (diff)
downloadu-boot-70cc0c34b638fbf99f0984dc53312cd8479c99a7.tar.gz
u-boot-70cc0c34b638fbf99f0984dc53312cd8479c99a7.tar.xz
u-boot-70cc0c34b638fbf99f0984dc53312cd8479c99a7.zip
OpenRISC: Remove
The OpenRISC architecture is currently unmaintained, remove. Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/openrisc/openrisc-generic/openrisc-generic.c')
-rw-r--r--board/openrisc/openrisc-generic/openrisc-generic.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/board/openrisc/openrisc-generic/openrisc-generic.c b/board/openrisc/openrisc-generic/openrisc-generic.c
deleted file mode 100644
index 4f82600bbb..0000000000
--- a/board/openrisc/openrisc-generic/openrisc-generic.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * Based on nios2-generic.c:
- * (C) Copyright 2005, Psyent Corporation <www.psyent.com>
- * Scott McNutt <smcnutt@psyent.com>
- * (C) Copyright 2010, Thomas Chou <thomas@wytron.com.tw>
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-
-#include <common.h>
-#include <netdev.h>
-
-int board_early_init_f(void)
-{
- return 0;
-}
-
-int checkboard(void)
-{
- printf("BOARD: %s\n", CONFIG_BOARD_NAME);
- return 0;
-}
-
-phys_size_t initdram(int board_type)
-{
- return 0;
-}
-
-#ifdef CONFIG_CMD_NET
-int board_eth_init(bd_t *bis)
-{
- int rc = 0;
-
-#ifdef CONFIG_ETHOC
- rc += ethoc_initialize(0, CONFIG_SYS_ETHOC_BASE);
-#endif
- return rc;
-}
-#endif