Messages in this thread Patch in this message |  | | From | guoren@kernel ... | Subject | [PATCH v2 1/2] drivers/irqchip: Fixup csky,mpintc compile error with CPU_CK610 | Date | Thu, 4 Feb 2021 15:46:08 +0800 |
| |
From: Guo Ren <guoren@linux.alibaba.com>
The irq-csky-mpintc.c only could support CPU_CK860 and it will compile error with CPU_CK610.
It has beed selected in arch/csky/Kconfig
Signed-off-by: Guo Ren <guoren@linux.alibaba.com> Cc: Marc Zyngier <maz@kernel.org> --- drivers/irqchip/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
--- v2: Drop the string after bool, as suggested by Marc Zyngier <maz@kernel.org>
diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig index b147f22a78f4..53abecb8c792 100644 --- a/drivers/irqchip/Kconfig +++ b/drivers/irqchip/Kconfig @@ -432,7 +432,7 @@ config QCOM_PDC IRQs for Qualcomm Technologies Inc (QTI) mobile chips. config CSKY_MPINTC - bool "C-SKY Multi Processor Interrupt Controller" + bool depends on CSKY help Say yes here to enable C-SKY SMP interrupt controller driver used -- 2.17.1
|  |