summaryrefslogtreecommitdiffstats
path: root/arch/arm/boards/panda/board.c
diff options
context:
space:
mode:
authorSanjeev Premi <premi@ti.com>2011-10-12 16:33:50 +0530
committerSascha Hauer <s.hauer@pengutronix.de>2011-11-11 12:07:14 +0100
commitb2e9356130713d84e719c84ccf98850e266e2f6b (patch)
treeb774c0af586fa9cf2221d1eeb20f951671b39ff5 /arch/arm/boards/panda/board.c
parent6756cd2cb2d06b6a75998ef6491265e45d49f198 (diff)
downloadbarebox-b2e9356130713d84e719c84ccf98850e266e2f6b.tar.gz
barebox-b2e9356130713d84e719c84ccf98850e266e2f6b.tar.xz
omap: Unify run_shell() in xload configuration
Currently, there are multiple definitions of run_shell() for each board that can be build in "xload" configuration. Now there is only one function used by all boards. The functions defined in xload.c are used only when "xload" configuration used; but it gets compiled unconditionally. This has been fixed as well. Signed-off-by: Sanjeev Premi <premi@ti.com> Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/boards/panda/board.c')
-rw-r--r--arch/arm/boards/panda/board.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/arch/arm/boards/panda/board.c b/arch/arm/boards/panda/board.c
index 6a149aaeaa..be3ad77826 100644
--- a/arch/arm/boards/panda/board.c
+++ b/arch/arm/boards/panda/board.c
@@ -170,22 +170,3 @@ static int panda_env_init(void)
}
late_initcall(panda_env_init);
#endif
-
-
-#ifdef CONFIG_SHELL_NONE
-int run_shell(void)
-{
- int (*func)(void);
-
- func = omap_xload_boot_mmc();
- if (!func) {
- printf("booting failed\n");
- while (1);
- }
-
- shutdown_barebox();
- func();
-
- while (1);
-}
-#endif