summaryrefslogtreecommitdiff
path: root/arch/arm/mach-imx/mach-imx50.c
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@freescale.com>2014-05-19 20:19:06 +0800
committerShawn Guo <shawn.guo@freescale.com>2014-07-18 16:10:06 +0800
commitfffa051281f7cb2729abe584d111e064f609f2ab (patch)
treec226cbae0719d2d4e0de9c96b94f709b985e8d91 /arch/arm/mach-imx/mach-imx50.c
parentb674cf2fb59a9df165a2c7b8ff601f438d9763d1 (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-imx50.c')
-rw-r--r--arch/arm/mach-imx/mach-imx50.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/mach-imx50.c b/arch/arm/mach-imx/mach-imx50.c
index b899c0b59afd..66e537ba9841 100644
--- a/arch/arm/mach-imx/mach-imx50.c
+++ b/arch/arm/mach-imx/mach-imx50.c
@@ -30,7 +30,7 @@ static const char *imx50_dt_board_compat[] __initconst = {
DT_MACHINE_START(IMX50_DT, "Freescale i.MX50 (Device Tree Support)")
.map_io = mx53_map_io,
- .init_irq = mx53_init_irq,
+ .init_irq = tzic_init_irq,
.init_machine = imx50_dt_init,
.dt_compat = imx50_dt_board_compat,
.restart = mxc_restart,