diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2021-10-10 09:29:29 +0300 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2021-10-18 09:41:08 +0300 |
commit | 981703aae3b1965896caaef95f25886ec8007744 (patch) | |
tree | 15daf68fa0b0d7f58b535b0df54ad0effa51b2b3 /drivers/dma | |
parent | d59f7037cec6b9388f658dfd4a56590a582467f0 (diff) | |
download | linux-981703aae3b1965896caaef95f25886ec8007744.tar.xz |
dmaengine: dw-edma: Remove an unused variable
'head' is unused, remove it.
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/46e071be21fbc5ac5c35d4796a7e4249e94c3a77.1633847306.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/dma')
-rw-r--r-- | drivers/dma/dw-edma/dw-edma-core.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/dma/dw-edma/dw-edma-core.c b/drivers/dma/dw-edma/dw-edma-core.c index 53289927dd0d..468d1097a1ec 100644 --- a/drivers/dma/dw-edma/dw-edma-core.c +++ b/drivers/dma/dw-edma/dw-edma-core.c @@ -249,7 +249,6 @@ static int dw_edma_device_terminate_all(struct dma_chan *dchan) { struct dw_edma_chan *chan = dchan2dw_edma_chan(dchan); int err = 0; - LIST_HEAD(head); if (!chan->configured) { /* Do nothing */ |