aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorArnd Bergmann <arnd@arndb.de>2013-06-13 08:13:37 -0400
committerArnd Bergmann <arnd@arndb.de>2013-07-05 17:07:39 -0400
commit514a590847ff42dc00ba6c6165736128ad7730a8 (patch)
tree01e7d6569cb9d946723ff47dbd185663b1ee3a06 /arch
parent896eba3ba41e1a978e9e47cf2837ef8963996bca (diff)
ARM: zynq: use DT_MACHINE_START
The zynq platform code only supports DT based booting, so we should use DT_MACHINE_START rather than MACHINE_START. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/arm/mach-zynq/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-zynq/common.c b/arch/arm/mach-zynq/common.c
index 4130e65a0e3f..5b799c29886e 100644
--- a/arch/arm/mach-zynq/common.c
+++ b/arch/arm/mach-zynq/common.c
@@ -101,7 +101,7 @@ static const char * const zynq_dt_match[] = {
101 NULL 101 NULL
102}; 102};
103 103
104MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform") 104DT_MACHINE_START(XILINX_EP107, "Xilinx Zynq Platform")
105 .smp = smp_ops(zynq_smp_ops), 105 .smp = smp_ops(zynq_smp_ops),
106 .map_io = zynq_map_io, 106 .map_io = zynq_map_io,
107 .init_machine = zynq_init_machine, 107 .init_machine = zynq_init_machine,