diff options
author | Palmer Dabbelt <palmer@sifive.com> | 2018-06-23 01:46:28 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-08-24 14:06:59 +0300 |
commit | 60f50e90b6afbefbb65886df4ce713af41fe348c (patch) | |
tree | 363df76bc06ce9c8110317c62e8b575f0534da8f /arch | |
parent | c488c3eabe9d6f9b2b705f8a68ba395b0eaea132 (diff) | |
download | linux-60f50e90b6afbefbb65886df4ce713af41fe348c.tar.xz |
RISC-V: Don't include irq-riscv-intc.h
[ Upstream commit 8606544890d7dc4f7a740963f70dc1e1d54f8e30 ]
This file has never existed in the upstream kernel, but it's guarded by
an #ifdef that's also never existed in the upstream kernel. As a part
of our interrupt controller refactoring this header is no longer
necessary, but this reference managed to sneak in anyway.
Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/riscv/kernel/irq.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/riscv/kernel/irq.c b/arch/riscv/kernel/irq.c index b74cbfbce2d0..7bcdaed15703 100644 --- a/arch/riscv/kernel/irq.c +++ b/arch/riscv/kernel/irq.c @@ -16,10 +16,6 @@ #include <linux/irqchip.h> #include <linux/irqdomain.h> -#ifdef CONFIG_RISCV_INTC -#include <linux/irqchip/irq-riscv-intc.h> -#endif - void __init init_IRQ(void) { irqchip_init(); |