diff options
author | Lauri Hintsala <lauri.hintsala@bluegiga.com> | 2011-10-18 12:52:29 +0300 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-10-18 12:13:54 +0200 |
commit | 2db3fcf1b74ed2587a4072224a3c92da7dff5647 (patch) | |
tree | 2938f3ab226d9942c8cf037402b1ec5f9330f7fc /arch/arm/mach-mxs/mach-tx28.c | |
parent | 976d167615b64e14bc1491ca51d424e2ba9a5e84 (diff) | |
download | op-kernel-dev-2db3fcf1b74ed2587a4072224a3c92da7dff5647.zip op-kernel-dev-2db3fcf1b74ed2587a4072224a3c92da7dff5647.tar.gz |
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>
Diffstat (limited to 'arch/arm/mach-mxs/mach-tx28.c')
-rw-r--r-- | arch/arm/mach-mxs/mach-tx28.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mxs/mach-tx28.c b/arch/arm/mach-mxs/mach-tx28.c index 515a423..9555938 100644 --- a/arch/arm/mach-mxs/mach-tx28.c +++ b/arch/arm/mach-mxs/mach-tx28.c @@ -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 |