diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2020-07-29 01:19:40 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-09-23 09:44:26 +0300 |
commit | 4b4d8e0e9f89cc75ed09fbcd43f1353f71325743 (patch) | |
tree | f1d2051be1cbe2c2459b916412197ce79a114f16 | |
parent | 0803f17bb33cc0213c5b9ac89c9b3f3443006d14 (diff) | |
download | linux-4b4d8e0e9f89cc75ed09fbcd43f1353f71325743.tar.xz |
rapidio: Replace 'select' DMAENGINES 'with depends on'
[ Upstream commit d2b86100245080cfdf1e95e9e07477474c1be2bd ]
Enabling a whole subsystem from a single driver 'select' is frowned
upon and won't be accepted in new drivers, that need to use 'depends on'
instead. Existing selection of DMAENGINES will then cause circular
dependencies. Replace them with a dependency.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
-rw-r--r-- | drivers/rapidio/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/rapidio/Kconfig b/drivers/rapidio/Kconfig index 3e3be57e9a1a..4d0c1a40a6e6 100644 --- a/drivers/rapidio/Kconfig +++ b/drivers/rapidio/Kconfig @@ -25,7 +25,7 @@ config RAPIDIO_ENABLE_RX_TX_PORTS config RAPIDIO_DMA_ENGINE bool "DMA Engine support for RapidIO" depends on RAPIDIO - select DMADEVICES + depends on DMADEVICES select DMA_ENGINE help Say Y here if you want to use DMA Engine frameork for RapidIO data |