diff options
author | Maxime Ripard <maxime.ripard@free-electrons.com> | 2013-05-14 11:38:37 -0400 |
---|---|---|
committer | Jamie Iles <jamie@jamieiles.com> | 2013-05-14 12:19:12 -0400 |
commit | 4b83f75a7af388aaf5f79ccf72c37074bc9166da (patch) | |
tree | e86b77cc0000a2b70e98aeeb110a085d43cf7499 /arch/arm/mach-picoxcell | |
parent | 525eded9a2f467791132389630d5354ac50c47d5 (diff) |
ARM: picoxcell: 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 picoxcell as well.
[ jiles: removed other, unused irq includes. ]
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Jamie Iles <jamie@jamieiles.com>
Diffstat (limited to 'arch/arm/mach-picoxcell')
-rw-r--r-- | arch/arm/mach-picoxcell/common.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/arm/mach-picoxcell/common.c b/arch/arm/mach-picoxcell/common.c index f6f71bb65b5a..b069fa6bb0e2 100644 --- a/arch/arm/mach-picoxcell/common.c +++ b/arch/arm/mach-picoxcell/common.c | |||
@@ -8,12 +8,8 @@ | |||
8 | * All enquiries to support@picochip.com | 8 | * All enquiries to support@picochip.com |
9 | */ | 9 | */ |
10 | #include <linux/delay.h> | 10 | #include <linux/delay.h> |
11 | #include <linux/irq.h> | ||
12 | #include <linux/irqchip.h> | ||
13 | #include <linux/irqdomain.h> | ||
14 | #include <linux/of.h> | 11 | #include <linux/of.h> |
15 | #include <linux/of_address.h> | 12 | #include <linux/of_address.h> |
16 | #include <linux/of_irq.h> | ||
17 | #include <linux/of_platform.h> | 13 | #include <linux/of_platform.h> |
18 | #include <linux/dw_apb_timer.h> | 14 | #include <linux/dw_apb_timer.h> |
19 | 15 | ||
@@ -85,7 +81,6 @@ static void picoxcell_wdt_restart(char mode, const char *cmd) | |||
85 | DT_MACHINE_START(PICOXCELL, "Picochip picoXcell") | 81 | DT_MACHINE_START(PICOXCELL, "Picochip picoXcell") |
86 | .map_io = picoxcell_map_io, | 82 | .map_io = picoxcell_map_io, |
87 | .nr_irqs = NR_IRQS_LEGACY, | 83 | .nr_irqs = NR_IRQS_LEGACY, |
88 | .init_irq = irqchip_init, | ||
89 | .init_time = dw_apb_timer_init, | 84 | .init_time = dw_apb_timer_init, |
90 | .init_machine = picoxcell_init_machine, | 85 | .init_machine = picoxcell_init_machine, |
91 | .dt_compat = picoxcell_dt_match, | 86 | .dt_compat = picoxcell_dt_match, |