diff options
author | Vinod Koul <vkoul@kernel.org> | 2023-10-10 12:27:29 +0530 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2023-10-10 23:30:52 +0530 |
commit | 8bf914570650ec5858e18554d70d2838cef01de1 (patch) | |
tree | 9e1ec9be29c68d340ccd136d2ce4c228cfd8e312 /drivers | |
parent | 9f895354cc3cf4fbff21c922a5721691ed40589d (diff) | |
download | linux-8bf914570650ec5858e18554d70d2838cef01de1.tar.gz linux-8bf914570650ec5858e18554d70d2838cef01de1.tar.bz2 linux-8bf914570650ec5858e18554d70d2838cef01de1.zip |
dmaengine: mmp_tdma: drop unused variable 'of_id'
Recent change a67ba97dfb30 ("dmaengine: Use device_get_match_data()")
cleaned up device tree data calls but left an unused variable, so drop
that
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Fixes: a67ba97dfb30 ("dmaengine: Use device_get_match_data()")
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Link: https://lore.kernel.org/r/20231010065729.29385-1-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/dma/mmp_tdma.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/dma/mmp_tdma.c b/drivers/dma/mmp_tdma.c index 9fff54b12db7..b76fe99e1151 100644 --- a/drivers/dma/mmp_tdma.c +++ b/drivers/dma/mmp_tdma.c @@ -635,7 +635,6 @@ MODULE_DEVICE_TABLE(of, mmp_tdma_dt_ids); static int mmp_tdma_probe(struct platform_device *pdev) { enum mmp_tdma_type type; - const struct of_device_id *of_id; struct mmp_tdma_device *tdev; int i, ret; int irq = 0, irq_num = 0; |