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

ARM: s3c24xx: move irqchip driver back into platform

It was a good idea to move it out at first, but the irqchip code
is still tightly connected to the s3c24xx platform code and uses
multiple internal header files, so just move it back for the
time being to avoid those dependencies.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20200806182059.2431-21-krzk@kernel.org
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>

authored by

Arnd Bergmann and committed by
Krzysztof Kozlowski
95b415ef 0144e3fc

+1 -1
+1
arch/arm/mach-s3c24xx/Makefile
··· 8 8 # core 9 9 10 10 obj-y += common.o 11 + obj-y += irq-s3c24xx.o 11 12 12 13 obj-$(CONFIG_CPU_S3C2410) += s3c2410.o 13 14 obj-$(CONFIG_S3C2410_PLL) += pll-s3c2410.o
-1
drivers/irqchip/Makefile
··· 16 16 obj-$(CONFIG_ARCH_MMP) += irq-mmp.o 17 17 obj-$(CONFIG_IRQ_MXS) += irq-mxs.o 18 18 obj-$(CONFIG_ARCH_TEGRA) += irq-tegra.o 19 - obj-$(CONFIG_ARCH_S3C24XX) += irq-s3c24xx.o 20 19 obj-$(CONFIG_DW_APB_ICTL) += irq-dw-apb-ictl.o 21 20 obj-$(CONFIG_CLPS711X_IRQCHIP) += irq-clps711x.o 22 21 obj-$(CONFIG_OMPIC) += irq-ompic.o
drivers/irqchip/irq-s3c24xx.c arch/arm/mach-s3c24xx/irq-s3c24xx.c