diff options
author | Rob Herring <rob.herring@calxeda.com> | 2013-01-02 10:37:56 -0500 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2013-01-12 11:52:15 -0500 |
commit | e9c515589df7731591d15e506ba6d69713faae41 (patch) | |
tree | df392b914720ca1a23d701e980de746eca805208 /arch/arm/mach-spear6xx/spear6xx.c | |
parent | 44430ec068b207f985aa00b1d34bb5085dbc39d5 (diff) |
ARM: spear: use common irqchip_init function
Convert spear DT irq initialization over to use common irqchip_init
function.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Cc: Viresh Kumar <viresh.linux@gmail.com>
Cc: Shiraz Hashim <shiraz.hashim@st.com>
Cc: Rajeev Kumar <rajeev-dlh.kumar@st.com>
Diffstat (limited to 'arch/arm/mach-spear6xx/spear6xx.c')
-rw-r--r-- | arch/arm/mach-spear6xx/spear6xx.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/arch/arm/mach-spear6xx/spear6xx.c b/arch/arm/mach-spear6xx/spear6xx.c index 9d81068f1b75..3f6fac0fdb71 100644 --- a/arch/arm/mach-spear6xx/spear6xx.c +++ b/arch/arm/mach-spear6xx/spear6xx.c | |||
@@ -16,12 +16,11 @@ | |||
16 | #include <linux/amba/pl08x.h> | 16 | #include <linux/amba/pl08x.h> |
17 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
18 | #include <linux/err.h> | 18 | #include <linux/err.h> |
19 | #include <linux/irqchip.h> | ||
19 | #include <linux/of.h> | 20 | #include <linux/of.h> |
20 | #include <linux/of_address.h> | 21 | #include <linux/of_address.h> |
21 | #include <linux/of_irq.h> | ||
22 | #include <linux/of_platform.h> | 22 | #include <linux/of_platform.h> |
23 | #include <asm/hardware/pl080.h> | 23 | #include <asm/hardware/pl080.h> |
24 | #include <asm/hardware/vic.h> | ||
25 | #include <asm/mach/arch.h> | 24 | #include <asm/mach/arch.h> |
26 | #include <asm/mach/time.h> | 25 | #include <asm/mach/time.h> |
27 | #include <asm/mach/map.h> | 26 | #include <asm/mach/map.h> |
@@ -425,19 +424,9 @@ static const char *spear600_dt_board_compat[] = { | |||
425 | NULL | 424 | NULL |
426 | }; | 425 | }; |
427 | 426 | ||
428 | static const struct of_device_id vic_of_match[] __initconst = { | ||
429 | { .compatible = "arm,pl190-vic", .data = vic_of_init, }, | ||
430 | { /* Sentinel */ } | ||
431 | }; | ||
432 | |||
433 | static void __init spear6xx_dt_init_irq(void) | ||
434 | { | ||
435 | of_irq_init(vic_of_match); | ||
436 | } | ||
437 | |||
438 | DT_MACHINE_START(SPEAR600_DT, "ST SPEAr600 (Flattened Device Tree)") | 427 | DT_MACHINE_START(SPEAR600_DT, "ST SPEAr600 (Flattened Device Tree)") |
439 | .map_io = spear6xx_map_io, | 428 | .map_io = spear6xx_map_io, |
440 | .init_irq = spear6xx_dt_init_irq, | 429 | .init_irq = irqchip_init, |
441 | .timer = &spear6xx_timer, | 430 | .timer = &spear6xx_timer, |
442 | .init_machine = spear600_dt_init, | 431 | .init_machine = spear600_dt_init, |
443 | .restart = spear_restart, | 432 | .restart = spear_restart, |