mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
cdx: Enable compile testing
There is no code limited to ARM64 or OF/Devicetree in the CDX bus driver, so CDX_BUS can be compile tested on all platforms. CDX_CONTROLLER on the other hand selects REMOTEPROC which depends on HAS_DMA, so add that dependency for compile testing. Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Acked-by: Nikhil Agarwal <nikhil.agarwal@amd.com> Link: https://lore.kernel.org/r/20250502-cdx-clean-v3-1-6aaa5b369fc5@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
421d3a860d
commit
7f81907b7e
2 changed files with 2 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
|||
|
||||
config CDX_BUS
|
||||
bool "CDX Bus driver"
|
||||
depends on OF && ARM64
|
||||
depends on OF && ARM64 || COMPILE_TEST
|
||||
help
|
||||
Driver to enable Composable DMA Transfer(CDX) Bus. CDX bus
|
||||
exposes Fabric devices which uses composable DMA IP to the
|
||||
|
|
|
@ -9,6 +9,7 @@ if CDX_BUS
|
|||
|
||||
config CDX_CONTROLLER
|
||||
tristate "CDX bus controller"
|
||||
depends on HAS_DMA
|
||||
select GENERIC_MSI_IRQ
|
||||
select REMOTEPROC
|
||||
select RPMSG
|
||||
|
|
Loading…
Add table
Reference in a new issue