summaryrefslogtreecommitdiff
path: root/arch/arm/mach-davinci/spl.c
diff options
context:
space:
mode:
authorBartosz Golaszewski <bgolaszewski@baylibre.com>2019-04-29 18:37:12 +0200
committerTom Rini <trini@konsulko.com>2019-05-04 13:04:10 -0400
commitcef443c1666cc70d7b0902936311da986d09a77c (patch)
tree2ed1444bed57ddc6385b4454210855eb85fbf05f /arch/arm/mach-davinci/spl.c
parent028020247d0e3946045dc5f6587c1539056bfee0 (diff)
arm: davinci: remove leftover code for dm* SoCs
The support for DaVinci DM* SoCs has been dropped a while ago. There's still a lot of leftover code in mach-davinci though. Entirely remove certain files and modify the common code to no longer reference unsupported chips. Note: all DaVinci platforms supported in u-boot now define SOC_DA8XX but not all define SOC_DA850 (e.g. omapl138). We can safely remove all ifdefs for the former, but let's leave the ones for the latter. Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'arch/arm/mach-davinci/spl.c')
-rw-r--r--arch/arm/mach-davinci/spl.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/arm/mach-davinci/spl.c b/arch/arm/mach-davinci/spl.c
index c9aaa4841b..103639e347 100644
--- a/arch/arm/mach-davinci/spl.c
+++ b/arch/arm/mach-davinci/spl.c
@@ -33,12 +33,7 @@ void putc(char c)
void spl_board_init(void)
{
-#ifdef CONFIG_SOC_DM365
- dm36x_lowlevel_init(0);
-#endif
-#ifdef CONFIG_SOC_DA8XX
arch_cpu_init();
-#endif
preloader_console_init();
}