* [PATCH] dmaengine: dw-edma: remove redundant config PCI dependency for some Synopsys DesignWare eDMA driver configs
@ 2023-01-11 12:16 Lukas Bulwahn
2023-01-11 13:04 ` Serge Semin
2023-01-18 7:15 ` Vinod Koul
0 siblings, 2 replies; 3+ messages in thread
From: Lukas Bulwahn @ 2023-01-11 12:16 UTC (permalink / raw)
To: Gustavo Pimentel, Vinod Koul, dmaengine
Cc: kernel-janitors, linux-kernel, Lukas Bulwahn
While reviewing dependencies in some Kconfig files, I noticed the redundant
dependency "depends on PCI && PCI_MSI". The config PCI_MSI has always,
since its introduction, been dependent on the config PCI. So, it is
sufficient to just depend on PCI_MSI, and know that the dependency on PCI
is implicitly implied.
Reduce the dependencies of configs DW_EDMA and DW_EDMA_PCIE.
No functional change and effective change of Kconfig dependendencies.
Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
---
drivers/dma/dw-edma/Kconfig | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/dma/dw-edma/Kconfig b/drivers/dma/dw-edma/Kconfig
index 7ff17b2db6a1..0408e515b2f3 100644
--- a/drivers/dma/dw-edma/Kconfig
+++ b/drivers/dma/dw-edma/Kconfig
@@ -2,7 +2,7 @@
config DW_EDMA
tristate "Synopsys DesignWare eDMA controller driver"
- depends on PCI && PCI_MSI
+ depends on PCI_MSI
select DMA_ENGINE
select DMA_VIRTUAL_CHANNELS
help
@@ -11,7 +11,7 @@ config DW_EDMA
config DW_EDMA_PCIE
tristate "Synopsys DesignWare eDMA PCIe driver"
- depends on PCI && PCI_MSI
+ depends on PCI_MSI
select DW_EDMA
help
Provides a glue-logic between the Synopsys DesignWare
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] dmaengine: dw-edma: remove redundant config PCI dependency for some Synopsys DesignWare eDMA driver configs
2023-01-11 12:16 [PATCH] dmaengine: dw-edma: remove redundant config PCI dependency for some Synopsys DesignWare eDMA driver configs Lukas Bulwahn
@ 2023-01-11 13:04 ` Serge Semin
2023-01-18 7:15 ` Vinod Koul
1 sibling, 0 replies; 3+ messages in thread
From: Serge Semin @ 2023-01-11 13:04 UTC (permalink / raw)
To: Lukas Bulwahn
Cc: Gustavo Pimentel, Vinod Koul, dmaengine, kernel-janitors,
linux-kernel
On Wed, Jan 11, 2023 at 01:16:37PM +0100, Lukas Bulwahn wrote:
> While reviewing dependencies in some Kconfig files, I noticed the redundant
> dependency "depends on PCI && PCI_MSI". The config PCI_MSI has always,
> since its introduction, been dependent on the config PCI. So, it is
> sufficient to just depend on PCI_MSI, and know that the dependency on PCI
> is implicitly implied.
>
> Reduce the dependencies of configs DW_EDMA and DW_EDMA_PCIE.
> No functional change and effective change of Kconfig dependendencies.
Indeed. Thanks.
Reviewed-by: Serge Semin <fancer.lancer@gmail.com>
-Serge(y)
>
> Signed-off-by: Lukas Bulwahn <lukas.bulwahn@gmail.com>
> ---
> drivers/dma/dw-edma/Kconfig | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/dma/dw-edma/Kconfig b/drivers/dma/dw-edma/Kconfig
> index 7ff17b2db6a1..0408e515b2f3 100644
> --- a/drivers/dma/dw-edma/Kconfig
> +++ b/drivers/dma/dw-edma/Kconfig
> @@ -2,7 +2,7 @@
>
> config DW_EDMA
> tristate "Synopsys DesignWare eDMA controller driver"
> - depends on PCI && PCI_MSI
> + depends on PCI_MSI
> select DMA_ENGINE
> select DMA_VIRTUAL_CHANNELS
> help
> @@ -11,7 +11,7 @@ config DW_EDMA
>
> config DW_EDMA_PCIE
> tristate "Synopsys DesignWare eDMA PCIe driver"
> - depends on PCI && PCI_MSI
> + depends on PCI_MSI
> select DW_EDMA
> help
> Provides a glue-logic between the Synopsys DesignWare
> --
> 2.17.1
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] dmaengine: dw-edma: remove redundant config PCI dependency for some Synopsys DesignWare eDMA driver configs
2023-01-11 12:16 [PATCH] dmaengine: dw-edma: remove redundant config PCI dependency for some Synopsys DesignWare eDMA driver configs Lukas Bulwahn
2023-01-11 13:04 ` Serge Semin
@ 2023-01-18 7:15 ` Vinod Koul
1 sibling, 0 replies; 3+ messages in thread
From: Vinod Koul @ 2023-01-18 7:15 UTC (permalink / raw)
To: Lukas Bulwahn; +Cc: Gustavo Pimentel, dmaengine, kernel-janitors, linux-kernel
On 11-01-23, 13:16, Lukas Bulwahn wrote:
> While reviewing dependencies in some Kconfig files, I noticed the redundant
> dependency "depends on PCI && PCI_MSI". The config PCI_MSI has always,
> since its introduction, been dependent on the config PCI. So, it is
> sufficient to just depend on PCI_MSI, and know that the dependency on PCI
> is implicitly implied.
>
> Reduce the dependencies of configs DW_EDMA and DW_EDMA_PCIE.
> No functional change and effective change of Kconfig dependendencies.
Applied, thanks
--
~Vinod
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-01-18 7:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-11 12:16 [PATCH] dmaengine: dw-edma: remove redundant config PCI dependency for some Synopsys DesignWare eDMA driver configs Lukas Bulwahn
2023-01-11 13:04 ` Serge Semin
2023-01-18 7:15 ` Vinod Koul
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox