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-24 04:12:53 -0400 |
commit | bf5d5b3e52fdb284aa05001f0338da77020eb9e5 (patch) | |
tree | e5b800391df95e22ef3d6f32a96a22bb54ee844c /arch/arm/mach-virt | |
parent | 4415788803bc3ec75a9fe88da09f8035af273dc9 (diff) |
ARM: virt: 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 virt as well.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'arch/arm/mach-virt')
-rw-r--r-- | arch/arm/mach-virt/virt.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/arm/mach-virt/virt.c b/arch/arm/mach-virt/virt.c index 061f283f579e..bdf05f41ca90 100644 --- a/arch/arm/mach-virt/virt.c +++ b/arch/arm/mach-virt/virt.c | |||
@@ -18,7 +18,6 @@ | |||
18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 18 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/irqchip.h> | ||
22 | #include <linux/of_irq.h> | 21 | #include <linux/of_irq.h> |
23 | #include <linux/of_platform.h> | 22 | #include <linux/of_platform.h> |
24 | #include <linux/smp.h> | 23 | #include <linux/smp.h> |
@@ -39,7 +38,6 @@ static const char *virt_dt_match[] = { | |||
39 | extern struct smp_operations virt_smp_ops; | 38 | extern struct smp_operations virt_smp_ops; |
40 | 39 | ||
41 | DT_MACHINE_START(VIRT, "Dummy Virtual Machine") | 40 | DT_MACHINE_START(VIRT, "Dummy Virtual Machine") |
42 | .init_irq = irqchip_init, | ||
43 | .init_machine = virt_init, | 41 | .init_machine = virt_init, |
44 | .smp = smp_ops(virt_smp_ops), | 42 | .smp = smp_ops(virt_smp_ops), |
45 | .dt_compat = virt_dt_match, | 43 | .dt_compat = virt_dt_match, |