mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

CDX_BUS driver uses msi_setup_device_data() which is selected by
GENERIC_MSI_IRQ, thus compile testing without the latter failed:
/usr/bin/ld: drivers/cdx/cdx.o: in function `cdx_probe':
build/drivers/cdx/cdx.c:314: undefined reference to `msi_setup_device_data'
Reported-by: Randy Dunlap <rdunlap@infradead.org>
Closes: https://lore.kernel.org/all/b2c54a12-480c-448a-8b90-333cb03d9c14@infradead.org/
Fixes: 7f81907b7e
("cdx: Enable compile testing")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20250716064903.52397-2-krzysztof.kozlowski@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 lines
613 B
Text
20 lines
613 B
Text
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# CDX bus configuration
|
|
#
|
|
# Copyright (C) 2022-2023, Advanced Micro Devices, Inc.
|
|
#
|
|
|
|
config CDX_BUS
|
|
bool "CDX Bus driver"
|
|
depends on OF && ARM64 || COMPILE_TEST
|
|
select GENERIC_MSI_IRQ
|
|
help
|
|
Driver to enable Composable DMA Transfer(CDX) Bus. CDX bus
|
|
exposes Fabric devices which uses composable DMA IP to the
|
|
APU. CDX bus provides a mechanism for scanning and probing
|
|
of CDX devices. CDX devices are memory mapped on system bus
|
|
for embedded CPUs. CDX bus uses CDX controller and firmware
|
|
to scan these CDX devices.
|
|
|
|
source "drivers/cdx/controller/Kconfig"
|