Patch "dmaengine: tegra210-adma: fix pm runtime unbalance" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    dmaengine: tegra210-adma: fix pm runtime unbalance

to the 5.15-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     dmaengine-tegra210-adma-fix-pm-runtime-unbalance.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit a8696d771487870aceecd38991b9cd69b8c36b3e
Author: Dongliang Mu <mudongliangabcd@xxxxxxxxx>
Date:   Thu Oct 21 11:05:38 2021 +0800

    dmaengine: tegra210-adma: fix pm runtime unbalance
    
    [ Upstream commit c5a51fc89c0103c03b8a54cf12dac7d014b3a2bf ]
    
    The previous commit 059e969c2a7d ("dmaengine: tegra210-adma: Using
    pm_runtime_resume_and_get to replace open coding") forgets to replace
    the pm_runtime_get_sync in the tegra_adma_probe, but removes the
    pm_runtime_put_noidle.
    
    Fix this by continuing to replace pm_runtime_get_sync with
    pm_runtime_resume_and_get in tegra_adma_probe.
    
    Fixes: 059e969c2a7d ("dmaengine: tegra210-adma: Using pm_runtime_resume_and_get to replace open coding")
    Signed-off-by: Dongliang Mu <mudongliangabcd@xxxxxxxxx>
    Reviewed-by: Jon Hunter <jonathanh@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20211021030538.3465287-1-mudongliangabcd@xxxxxxxxx
    Signed-off-by: Vinod Koul <vkoul@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/dma/tegra210-adma.c b/drivers/dma/tegra210-adma.c
index b1115a6d1935c..d1dff3a29db59 100644
--- a/drivers/dma/tegra210-adma.c
+++ b/drivers/dma/tegra210-adma.c
@@ -867,7 +867,7 @@ static int tegra_adma_probe(struct platform_device *pdev)
 
 	pm_runtime_enable(&pdev->dev);
 
-	ret = pm_runtime_get_sync(&pdev->dev);
+	ret = pm_runtime_resume_and_get(&pdev->dev);
 	if (ret < 0)
 		goto rpm_disable;
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux