WIP FPC-III support
[linux/fpc-iii.git] / arch / riscv / kernel / irq.c
blob7207fa08d78f86a26b0181c97c0c3761f4d49043
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Copyright (C) 2012 Regents of the University of California
4 * Copyright (C) 2017 SiFive
5 * Copyright (C) 2018 Christoph Hellwig
6 */
8 #include <linux/interrupt.h>
9 #include <linux/irqchip.h>
10 #include <linux/seq_file.h>
11 #include <asm/smp.h>
13 int arch_show_interrupts(struct seq_file *p, int prec)
15 show_ipi_stats(p, prec);
16 return 0;
19 void __init init_IRQ(void)
21 irqchip_init();
22 if (!handle_arch_irq)
23 panic("No interrupt controller found.");