hwrng: mtk - Use devm_pm_runtime_enable
authorGuoqing Jiang <guoqing.jiang@canonical.com>
Mon, 26 Aug 2024 07:04:15 +0000 (15:04 +0800)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 6 Sep 2024 06:50:45 +0000 (14:50 +0800)
Replace pm_runtime_enable with the devres-enabled version which
can trigger pm_runtime_disable.

Otherwise, the below appears during reload driver.

mtk_rng 1020f000.rng: Unbalanced pm_runtime_enable!

Fixes: 81d2b34508c6 ("hwrng: mtk - add runtime PM support")
Cc: <stable@vger.kernel.org>
Suggested-by: Chen-Yu Tsai <wenst@chromium.org>
Signed-off-by: Guoqing Jiang <guoqing.jiang@canonical.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/char/hw_random/mtk-rng.c

index aa99375..1e3048f 100644 (file)
@@ -142,7 +142,7 @@ static int mtk_rng_probe(struct platform_device *pdev)
        dev_set_drvdata(&pdev->dev, priv);
        pm_runtime_set_autosuspend_delay(&pdev->dev, RNG_AUTOSUSPEND_TIMEOUT);
        pm_runtime_use_autosuspend(&pdev->dev);
-       pm_runtime_enable(&pdev->dev);
+       devm_pm_runtime_enable(&pdev->dev);
 
        dev_info(&pdev->dev, "registered RNG driver\n");