diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2013-04-18 16:08:50 -0400 |
---|---|---|
committer | Maxime Ripard <maxime.ripard@free-electrons.com> | 2013-05-15 04:54:20 -0400 |
commit | caf77a7130e4324660ab2a185e7321aa3e655354 (patch) | |
tree | a0815144bb809573095e9fd37bf6f8a4d2e9993d /arch/arm/mach-sunxi | |
parent | f722406faae2d073cc1d01063d1123c35425939e (diff) |
ARM: sunxi: Remove init_irq declaration in machine description
Commit ebafed7a ("ARM: irq: Call irqchip_init if no init_irq function is
specified") removed the need to explictly setup the init_irq field in
the machine description when using only irqchip_init. Remove that
declaration for sunxi as well.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'arch/arm/mach-sunxi')
-rw-r--r-- | arch/arm/mach-sunxi/sunxi.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-sunxi/sunxi.c b/arch/arm/mach-sunxi/sunxi.c index 706ce35396b8..08937a345ab0 100644 --- a/arch/arm/mach-sunxi/sunxi.c +++ b/arch/arm/mach-sunxi/sunxi.c | |||
@@ -14,7 +14,6 @@ | |||
14 | #include <linux/delay.h> | 14 | #include <linux/delay.h> |
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | #include <linux/irqchip.h> | ||
18 | #include <linux/of_address.h> | 17 | #include <linux/of_address.h> |
19 | #include <linux/of_irq.h> | 18 | #include <linux/of_irq.h> |
20 | #include <linux/of_platform.h> | 19 | #include <linux/of_platform.h> |
@@ -117,7 +116,6 @@ static const char * const sunxi_board_dt_compat[] = { | |||
117 | DT_MACHINE_START(SUNXI_DT, "Allwinner A1X (Device Tree)") | 116 | DT_MACHINE_START(SUNXI_DT, "Allwinner A1X (Device Tree)") |
118 | .init_machine = sunxi_dt_init, | 117 | .init_machine = sunxi_dt_init, |
119 | .map_io = sunxi_map_io, | 118 | .map_io = sunxi_map_io, |
120 | .init_irq = irqchip_init, | ||
121 | .init_time = sunxi_timer_init, | 119 | .init_time = sunxi_timer_init, |
122 | .dt_compat = sunxi_board_dt_compat, | 120 | .dt_compat = sunxi_board_dt_compat, |
123 | MACHINE_END | 121 | MACHINE_END |