diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2013-05-27 05:00:22 -0400 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-07-16 21:02:23 -0400 |
commit | 125332daf2e4119614c561bc8cbf1f49cd243023 (patch) | |
tree | 4a8b207e434aced5804fd8d79d7ac31889179e49 /arch/arm | |
parent | c7f6085f6ea7b7cf155f470431cf1b12cd999450 (diff) |
ARM: shmobile: r8a7790: 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 shmobile as well.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-shmobile/setup-r8a7790.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-shmobile/setup-r8a7790.c b/arch/arm/mach-shmobile/setup-r8a7790.c index 28f94752b8ff..d405dbd44b07 100644 --- a/arch/arm/mach-shmobile/setup-r8a7790.c +++ b/arch/arm/mach-shmobile/setup-r8a7790.c | |||
@@ -19,7 +19,6 @@ | |||
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/irq.h> | 21 | #include <linux/irq.h> |
22 | #include <linux/irqchip.h> | ||
23 | #include <linux/kernel.h> | 22 | #include <linux/kernel.h> |
24 | #include <linux/of_platform.h> | 23 | #include <linux/of_platform.h> |
25 | #include <linux/serial_sci.h> | 24 | #include <linux/serial_sci.h> |
@@ -188,7 +187,6 @@ static const char *r8a7790_boards_compat_dt[] __initdata = { | |||
188 | }; | 187 | }; |
189 | 188 | ||
190 | DT_MACHINE_START(R8A7790_DT, "Generic R8A7790 (Flattened Device Tree)") | 189 | DT_MACHINE_START(R8A7790_DT, "Generic R8A7790 (Flattened Device Tree)") |
191 | .init_irq = irqchip_init, | ||
192 | .init_machine = r8a7790_add_standard_devices_dt, | 190 | .init_machine = r8a7790_add_standard_devices_dt, |
193 | .init_time = r8a7790_timer_init, | 191 | .init_time = r8a7790_timer_init, |
194 | .dt_compat = r8a7790_boards_compat_dt, | 192 | .dt_compat = r8a7790_boards_compat_dt, |