diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-09-18 09:55:18 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2013-09-26 05:09:09 -0400 |
commit | 7278248588c907b798a78bb61198d3204742b4e2 (patch) | |
tree | 95946327a808dbab22eb32c287582bf2489e637d | |
parent | 575d11aad0421797afc37b94a1040aba70c88d05 (diff) |
ARM: ux500: Remove ATAG booting support for Snowball
It's time to remove all ATAG support from ux500 and rely solely on
Device Tree booting. This patch is part of that endeavour.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | arch/arm/mach-ux500/board-mop500.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/arch/arm/mach-ux500/board-mop500.c b/arch/arm/mach-ux500/board-mop500.c index 97f5e29a08c5..514d40b625a4 100644 --- a/arch/arm/mach-ux500/board-mop500.c +++ b/arch/arm/mach-ux500/board-mop500.c | |||
@@ -76,21 +76,3 @@ struct pl022_ssp_controller ssp0_plat = { | |||
76 | */ | 76 | */ |
77 | .num_chipselect = 5, | 77 | .num_chipselect = 5, |
78 | }; | 78 | }; |
79 | |||
80 | static void __init snowball_init_machine(void) | ||
81 | { | ||
82 | /* This board has full regulator constraints */ | ||
83 | regulator_has_full_constraints(); | ||
84 | } | ||
85 | |||
86 | MACHINE_START(SNOWBALL, "Calao Systems Snowball platform") | ||
87 | .atag_offset = 0x100, | ||
88 | .smp = smp_ops(ux500_smp_ops), | ||
89 | .map_io = u8500_map_io, | ||
90 | .init_irq = ux500_init_irq, | ||
91 | /* we re-use nomadik timer here */ | ||
92 | .init_time = ux500_timer_init, | ||
93 | .init_machine = snowball_init_machine, | ||
94 | .restart = ux500_restart, | ||
95 | .init_late = NULL, | ||
96 | MACHINE_END | ||