mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
521a503f52
The irqchip driver depends on the SoC specific driver, but we want to be able to compile-test it elsewhere: WARNING: unmet direct dependencies detected for TI_SCI_INTA_MSI_DOMAIN Depends on [n]: SOC_TI [=n] Selected by [y]: - TI_SCI_INTA_IRQCHIP [=y] && TI_SCI_PROTOCOL [=y] drivers/irqchip/irq-ti-sci-inta.o: In function `ti_sci_inta_irq_domain_probe': irq-ti-sci-inta.c:(.text+0x204): undefined reference to `ti_sci_inta_msi_create_irq_domain' Rearrange the Kconfig and Makefile so we build the soc driver whenever its users are there, regardless of the SOC_TI option. Fixes:49b323157b
("soc: ti: Add MSI domain bus support for Interrupt Aggregator") Fixes:f011df6179
("irqchip/ti-sci-inta: Add msi domain support") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com> Acked-by: Santosh Shilimkar <ssantosh@kernel.org> Signed-off-by: Olof Johansson <olof@lixom.net>
30 lines
814 B
Makefile
30 lines
814 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Linux Kernel SOC specific device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_ARCH_ACTIONS) += actions/
|
|
obj-$(CONFIG_SOC_ASPEED) += aspeed/
|
|
obj-$(CONFIG_ARCH_AT91) += atmel/
|
|
obj-y += bcm/
|
|
obj-$(CONFIG_ARCH_DOVE) += dove/
|
|
obj-$(CONFIG_MACH_DOVE) += dove/
|
|
obj-y += fsl/
|
|
obj-$(CONFIG_ARCH_GEMINI) += gemini/
|
|
obj-$(CONFIG_ARCH_MXC) += imx/
|
|
obj-$(CONFIG_ARCH_IXP4XX) += ixp4xx/
|
|
obj-$(CONFIG_SOC_XWAY) += lantiq/
|
|
obj-y += mediatek/
|
|
obj-y += amlogic/
|
|
obj-y += qcom/
|
|
obj-y += renesas/
|
|
obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
|
|
obj-$(CONFIG_SOC_SAMSUNG) += samsung/
|
|
obj-y += sunxi/
|
|
obj-$(CONFIG_ARCH_TEGRA) += tegra/
|
|
obj-y += ti/
|
|
obj-$(CONFIG_ARCH_U8500) += ux500/
|
|
obj-$(CONFIG_PLAT_VERSATILE) += versatile/
|
|
obj-y += xilinx/
|
|
obj-$(CONFIG_ARCH_ZX) += zte/
|