]> git.baikalelectronics.ru Git - kernel.git/commitdiff
dmaengine: mv_xor_v2: Fix a resource leak in mv_xor_v2_remove()
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Mon, 24 Oct 2022 19:50:09 +0000 (21:50 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 Nov 2022 16:42:06 +0000 (17:42 +0100)
[ Upstream commit 051a4268c63c47fcc93aef515eaae7f0ccc0235d ]

A clk_prepare_enable() call in the probe is not balanced by a corresponding
clk_disable_unprepare() in the remove function.

Add the missing call.

Fixes: 6aac7fdd554c ("dmaengine: mv_xor_v2: Fix clock resource by adding a register clock")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/e9e3837a680c9bd2438e4db2b83270c6c052d005.1666640987.git.christophe.jaillet@wanadoo.fr
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/dma/mv_xor_v2.c

index 889a94af4c85185f229a5d4313d5a46f8ac48086..3fa884145eb1eea129f8722d23ddfd52ae12d067 100644 (file)
@@ -895,6 +895,7 @@ static int mv_xor_v2_remove(struct platform_device *pdev)
        tasklet_kill(&xor_dev->irq_tasklet);
 
        clk_disable_unprepare(xor_dev->clk);
+       clk_disable_unprepare(xor_dev->reg_clk);
 
        return 0;
 }