mirror of https://gitee.com/openkylin/linux.git
ARM: mach-mxs: fix machines' initializers order
Signed-off-by: Lauri Hintsala <lauri.hintsala@bluegiga.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
parent
976d167615
commit
2db3fcf1b7
|
@ -182,6 +182,6 @@ MACHINE_START(MX23EVK, "Freescale MX23 EVK")
|
|||
/* Maintainer: Freescale Semiconductor, Inc. */
|
||||
.map_io = mx23_map_io,
|
||||
.init_irq = mx23_init_irq,
|
||||
.init_machine = mx23evk_init,
|
||||
.timer = &mx23evk_timer,
|
||||
.init_machine = mx23evk_init,
|
||||
MACHINE_END
|
||||
|
|
|
@ -421,6 +421,6 @@ MACHINE_START(MX28EVK, "Freescale MX28 EVK")
|
|||
/* Maintainer: Freescale Semiconductor, Inc. */
|
||||
.map_io = mx28_map_io,
|
||||
.init_irq = mx28_init_irq,
|
||||
.init_machine = mx28evk_init,
|
||||
.timer = &mx28evk_timer,
|
||||
.init_machine = mx28evk_init,
|
||||
MACHINE_END
|
||||
|
|
|
@ -175,6 +175,6 @@ static struct sys_timer tx28_timer = {
|
|||
MACHINE_START(TX28, "Ka-Ro electronics TX28 module")
|
||||
.map_io = mx28_map_io,
|
||||
.init_irq = mx28_init_irq,
|
||||
.init_machine = tx28_stk5v3_init,
|
||||
.timer = &tx28_timer,
|
||||
.init_machine = tx28_stk5v3_init,
|
||||
MACHINE_END
|
||||
|
|
Loading…
Reference in New Issue