diff options
author | Shawn Guo <shawn.guo@freescale.com> | 2014-05-19 08:19:06 -0400 |
---|---|---|
committer | Shawn Guo <shawn.guo@freescale.com> | 2014-07-18 04:10:06 -0400 |
commit | fffa051281f7cb2729abe584d111e064f609f2ab (patch) | |
tree | c226cbae0719d2d4e0de9c96b94f709b985e8d91 /arch/arm/mach-imx/mach-imx53.c | |
parent | b674cf2fb59a9df165a2c7b8ff601f438d9763d1 (diff) |
ARM: imx5: tzic_init_irq() can directly be .init_irq hook
After i.MX51 supports DT only, tzic_init_irq() can figure out the
tzic_base on its own. Thus, it can directly be .init_irq hook, and
mx51[53]_init_irq() can be saved.
Signed-off-by: Shawn Guo <shawn.guo@freescale.com>
Diffstat (limited to 'arch/arm/mach-imx/mach-imx53.c')
-rw-r--r-- | arch/arm/mach-imx/mach-imx53.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mach-imx53.c b/arch/arm/mach-imx/mach-imx53.c index 2bad387956c0..9a066af3a205 100644 --- a/arch/arm/mach-imx/mach-imx53.c +++ b/arch/arm/mach-imx/mach-imx53.c | |||
@@ -39,7 +39,7 @@ static const char *imx53_dt_board_compat[] __initconst = { | |||
39 | DT_MACHINE_START(IMX53_DT, "Freescale i.MX53 (Device Tree Support)") | 39 | DT_MACHINE_START(IMX53_DT, "Freescale i.MX53 (Device Tree Support)") |
40 | .map_io = mx53_map_io, | 40 | .map_io = mx53_map_io, |
41 | .init_early = imx53_init_early, | 41 | .init_early = imx53_init_early, |
42 | .init_irq = mx53_init_irq, | 42 | .init_irq = tzic_init_irq, |
43 | .init_machine = imx53_dt_init, | 43 | .init_machine = imx53_dt_init, |
44 | .init_late = imx53_init_late, | 44 | .init_late = imx53_init_late, |
45 | .dt_compat = imx53_dt_board_compat, | 45 | .dt_compat = imx53_dt_board_compat, |