diff options
author | Colin Ian King <colin.i.king@gmail.com> | 2024-03-08 13:47:50 +0000 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2024-04-07 18:36:58 +0530 |
commit | 4665be0e952f68306cc6fba2cce68b940a7ec78c (patch) | |
tree | 88ae6b3e1cca5100f2005ccd79d5431b0cf6aaac /drivers/dma | |
parent | ebf850697a9daa9f59b902ea1e547079d426618b (diff) | |
download | linux-4665be0e952f68306cc6fba2cce68b940a7ec78c.tar.gz linux-4665be0e952f68306cc6fba2cce68b940a7ec78c.tar.bz2 linux-4665be0e952f68306cc6fba2cce68b940a7ec78c.zip |
dmaengine: pch_dma: remove unused function chan2parent
The helper function chan2parent is not used and has never been
used since the first commit to the code back in 2010. The function
is redundant and can be removed.
Cleans up clang scan build warning:
drivers/dma/pch_dma.c:158:30: warning: unused function 'chan2parent' [-Wunused-function]
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://lore.kernel.org/r/20240308134750.2058556-1-colin.i.king@gmail.com
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/pch_dma.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/dma/pch_dma.c b/drivers/dma/pch_dma.c index c359decc07a3..6b2793b07694 100644 --- a/drivers/dma/pch_dma.c +++ b/drivers/dma/pch_dma.c @@ -155,11 +155,6 @@ static inline struct device *chan2dev(struct dma_chan *chan) return &chan->dev->device; } -static inline struct device *chan2parent(struct dma_chan *chan) -{ - return chan->dev->device.parent; -} - static inline struct pch_dma_desc *pdc_first_active(struct pch_dma_chan *pd_chan) { |