]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
dmaengine: cirrus: Drop left-over from platform probing
authorUwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
Thu, 28 May 2026 13:50:10 +0000 (15:50 +0200)
committerVinod Koul <vkoul@kernel.org>
Mon, 8 Jun 2026 11:32:21 +0000 (17:02 +0530)
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>
Link: https://patch.msgid.link/c3830cb95b0bb939f9cc9543dfa3047e41532c47.1779976024.git.ukleinek@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/ep93xx_dma.c

index 8eceb96d058c9343cbfaf971ae6b8ca85acbb509..a3395cfcf5dd54b65b68d2fa1638b7eed4d58f08 100644 (file)
@@ -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,
 };