[PATCH v1] dmaengine: cirrus: Drop left-over from platform probing
From: Uwe Kleine-König (The Capable Hub)
Date: Thu May 28 2026 - 09:56:44 EST
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@xxxxxxxxxxxx>
---
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