diff options
author | John Crispin | 2019-01-11 15:22:36 +0100 |
---|---|---|
committer | Paul Burton | 2019-01-22 20:17:22 +0100 |
commit | 51fa4f8912c0934cf1410f435516d2abbcf88a9e (patch) | |
tree | eab0599507b624982ff615beec6a09365204c1ba /arch/mips/ath79/setup.c | |
parent | MIPS: ath79: export switch MDIO reference clock (diff) | |
download | kernel-qcow2-linux-51fa4f8912c0934cf1410f435516d2abbcf88a9e.tar.gz kernel-qcow2-linux-51fa4f8912c0934cf1410f435516d2abbcf88a9e.tar.xz kernel-qcow2-linux-51fa4f8912c0934cf1410f435516d2abbcf88a9e.zip |
MIPS: ath79: drop legacy IRQ code
With the target now being fully OF based, we can drop the legacy IRQ code.
All IRQs are now handled via the new irqchip drivers.
Signed-off-by: John Crispin <john@phrozen.org>
Signed-off-by: Paul Burton <paul.burton@mips.com>
Cc: Ralf Baechle <ralf@linux-mips.org>
Cc: James Hogan <jhogan@kernel.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Pengutronix Kernel Team <kernel@pengutronix.de>
Cc: linux-mips@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: devicetree@vger.kernel.org
Cc: Felix Fietkau <nbd@nbd.name>
Diffstat (limited to 'arch/mips/ath79/setup.c')
-rw-r--r-- | arch/mips/ath79/setup.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c index 9728abcb18fa..48f879686935 100644 --- a/arch/mips/ath79/setup.c +++ b/arch/mips/ath79/setup.c @@ -19,6 +19,7 @@ #include <linux/clk.h> #include <linux/clk-provider.h> #include <linux/of_fdt.h> +#include <linux/irqchip.h> #include <asm/bootinfo.h> #include <asm/idle.h> @@ -311,6 +312,11 @@ void __init plat_time_init(void) mips_hpt_frequency = cpu_clk_rate / 2; } +void __init arch_init_irq(void) +{ + irqchip_init(); +} + static int __init ath79_setup(void) { if (mips_machtype == ATH79_MACH_GENERIC_OF) |