[PATCH v1] dmaengine: cirrus: Drop left-over from platform probing

Uwe Kleine-König (The Capable Hub) posted 1 patch 1 week, 4 days ago
drivers/dma/ep93xx_dma.c | 7 -------
1 file changed, 7 deletions(-)
[PATCH v1] dmaengine: cirrus: Drop left-over from platform probing
Posted by Uwe Kleine-König (The Capable Hub) 1 week, 4 days ago
Since commit 2e7f55ce4302 ("dmaengine: cirrus: Convert to DT for Cirrus
EP93xx") the driver cannot probe devices using the traditional platform
device way any more. Thus the driver's .id_table serves no purpose any
more and can be dropped.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
---
 drivers/dma/ep93xx_dma.c | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/drivers/dma/ep93xx_dma.c b/drivers/dma/ep93xx_dma.c
index 8eceb96d058c..a3395cfcf5dd 100644
--- a/drivers/dma/ep93xx_dma.c
+++ b/drivers/dma/ep93xx_dma.c
@@ -1587,18 +1587,11 @@ static const struct of_device_id ep93xx_dma_of_ids[] = {
 };
 MODULE_DEVICE_TABLE(of, ep93xx_dma_of_ids);
 
-static const struct platform_device_id ep93xx_dma_driver_ids[] = {
-	{ "ep93xx-dma-m2p", 0 },
-	{ "ep93xx-dma-m2m", 1 },
-	{ },
-};
-
 static struct platform_driver ep93xx_dma_driver = {
 	.driver		= {
 		.name	= "ep93xx-dma",
 		.of_match_table = ep93xx_dma_of_ids,
 	},
-	.id_table	= ep93xx_dma_driver_ids,
 	.probe		= ep93xx_dma_probe,
 };
 

base-commit: e7d700e14934e68f86338c5610cf2ae76798b663
-- 
2.47.3

Re: [PATCH v1] dmaengine: cirrus: Drop left-over from platform probing
Posted by Vinod Koul 2 hours ago
On Thu, 28 May 2026 15:50:10 +0200, Uwe Kleine-König (The Capable Hub) wrote:
> Since commit 2e7f55ce4302 ("dmaengine: cirrus: Convert to DT for Cirrus
> EP93xx") the driver cannot probe devices using the traditional platform
> device way any more. Thus the driver's .id_table serves no purpose any
> more and can be dropped.
> 
> 

Applied, thanks!

[1/1] dmaengine: cirrus: Drop left-over from platform probing
      commit: 1d736d76c7d16359bae042b8c9fbb0fdac158721

Best regards,
-- 
~Vinod