Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

MIPS: ralink: add a symbol for INTC

Some of the newer SoCs use the GIC. This patch splits the INTC out into its
own symbol, allowing us to add the gic code in the following patch.

Signed-off-by: John Crispin <blogic@openwrt.org>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/11989/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>

authored by

John Crispin and committed by
Ralf Baechle
2761f83c 663148e4

+6
+4
arch/mips/ralink/Kconfig
··· 12 12 depends on SOC_RT305X 13 13 default y 14 14 15 + config IRQ_INTC 16 + bool 17 + default y 18 + 15 19 choice 16 20 prompt "Ralink SoC selection" 17 21 default SOC_RT305X
+2
arch/mips/ralink/Makefile
··· 12 12 13 13 obj-$(CONFIG_RALINK_ILL_ACC) += ill_acc.o 14 14 15 + obj-$(CONFIG_IRQ_INTC) += irq.o 16 + 15 17 obj-$(CONFIG_SOC_RT288X) += rt288x.o 16 18 obj-$(CONFIG_SOC_RT305X) += rt305x.o 17 19 obj-$(CONFIG_SOC_RT3883) += rt3883.o