lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 21 Aug 2018 15:49:36 +0200 From: Paul Cercueil <paul@...pouillou.net> To: Thomas Gleixner <tglx@...utronix.de>, Jason Cooper <jason@...edaemon.net>, Marc Zyngier <marc.zyngier@....com> Cc: od@...c.me, linux-kernel@...r.kernel.org, Paul Cercueil <paul@...pouillou.net> Subject: [PATCH] irq: ingenic: Drop dependency on MACH_INGENIC Depending on MACH_INGENIC prevent us from creating a generic kernel that works on more than one MIPS board. Instead, we just depend on MIPS being set. Signed-off-by: Paul Cercueil <paul@...pouillou.net> --- drivers/irqchip/Kconfig | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig index e9233db16e03..04628af89b60 100644 --- a/drivers/irqchip/Kconfig +++ b/drivers/irqchip/Kconfig @@ -269,9 +269,13 @@ config MIPS_GIC select MIPS_CM config INGENIC_IRQ - bool - depends on MACH_INGENIC - default y + bool "Ingenic JZ47xx IRQ controller" + depends on MIPS + default MACH_INGENIC + help + Support the interrupt controller present on JZ47xx SoCs from Ingenic. + + If compiling for an Ingenic JZ47xx SoC, you want to say Y here. config RENESAS_H8300H_INTC bool -- 2.11.0
Powered by blists - more mailing lists