diff options
author | Fabio Estevam <festevam@denx.de> | 2024-08-05 23:17:44 -0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-08-29 22:49:07 +0530 |
commit | 39dc2a4929f7be748b37a5070f41afe7bcb60706 (patch) | |
tree | 12a8179580167c315a7a23017f53a04b9fd87859 /drivers/dma | |
parent | 2ccf4822683336f027a5c9f12cb2468e329125d9 (diff) | |
download | linux-39dc2a4929f7be748b37a5070f41afe7bcb60706.tar.gz linux-39dc2a4929f7be748b37a5070f41afe7bcb60706.tar.bz2 linux-39dc2a4929f7be748b37a5070f41afe7bcb60706.zip |
dmaengine: imx-dma: Remove i.MX21 support
i.MX21 support has been removed since commit 4b563a066611 ("ARM: imx:
Remove imx21 support").
Remove the i.MX21 support inside the imx-dma driver.
Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Link: https://lore.kernel.org/r/20240806021744.2524233-1-festevam@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/imx-dma.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/dma/imx-dma.c b/drivers/dma/imx-dma.c index ebf7c115d553..e913f0db99da 100644 --- a/drivers/dma/imx-dma.c +++ b/drivers/dma/imx-dma.c @@ -167,7 +167,6 @@ struct imxdma_channel { enum imx_dma_type { IMX1_DMA, - IMX21_DMA, IMX27_DMA, }; @@ -195,8 +194,6 @@ static const struct of_device_id imx_dma_of_dev_id[] = { { .compatible = "fsl,imx1-dma", .data = (const void *)IMX1_DMA, }, { - .compatible = "fsl,imx21-dma", .data = (const void *)IMX21_DMA, - }, { .compatible = "fsl,imx27-dma", .data = (const void *)IMX27_DMA, }, { /* sentinel */ |