diff options
author | Marc Zyngier <marc.zyngier@arm.com> | 2013-01-24 07:03:36 -0500 |
---|---|---|
committer | Marc Zyngier <marc.zyngier@arm.com> | 2013-01-24 07:03:36 -0500 |
commit | 369e67595ad8f278edf32a65f10ba473baeff03e (patch) | |
tree | a3bba5b97c6bb522343cf16a216047e9ca99d90c /arch/arm/mach-tegra/common.c | |
parent | a749474de5f0f5902f59acb5c7f4dc6b816ac788 (diff) | |
parent | 9e47b8bf9815523a5816f2f83e73b13812d74014 (diff) |
Merge remote-tracking branch 'arm-soc/irqchip/gic-vic-move' into kvm-arm/vgic
Diffstat (limited to 'arch/arm/mach-tegra/common.c')
-rw-r--r-- | arch/arm/mach-tegra/common.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c index d54cfc54b9fe..3599959517b3 100644 --- a/arch/arm/mach-tegra/common.c +++ b/arch/arm/mach-tegra/common.c | |||
@@ -21,10 +21,9 @@ | |||
21 | #include <linux/io.h> | 21 | #include <linux/io.h> |
22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
23 | #include <linux/delay.h> | 23 | #include <linux/delay.h> |
24 | #include <linux/of_irq.h> | 24 | #include <linux/irqchip.h> |
25 | 25 | ||
26 | #include <asm/hardware/cache-l2x0.h> | 26 | #include <asm/hardware/cache-l2x0.h> |
27 | #include <asm/hardware/gic.h> | ||
28 | 27 | ||
29 | #include <mach/powergate.h> | 28 | #include <mach/powergate.h> |
30 | 29 | ||
@@ -57,15 +56,10 @@ u32 tegra_uart_config[4] = { | |||
57 | }; | 56 | }; |
58 | 57 | ||
59 | #ifdef CONFIG_OF | 58 | #ifdef CONFIG_OF |
60 | static const struct of_device_id tegra_dt_irq_match[] __initconst = { | ||
61 | { .compatible = "arm,cortex-a9-gic", .data = gic_of_init }, | ||
62 | { } | ||
63 | }; | ||
64 | |||
65 | void __init tegra_dt_init_irq(void) | 59 | void __init tegra_dt_init_irq(void) |
66 | { | 60 | { |
67 | tegra_init_irq(); | 61 | tegra_init_irq(); |
68 | of_irq_init(tegra_dt_irq_match); | 62 | irqchip_init(); |
69 | } | 63 | } |
70 | #endif | 64 | #endif |
71 | 65 | ||