]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
clk: mediatek: Fix error handling in runtime PM setup
authorHaotian Zhang <vulab@iscas.ac.cn>
Sun, 23 Nov 2025 15:43:15 +0000 (23:43 +0800)
committerStephen Boyd <sboyd@kernel.org>
Fri, 23 Jan 2026 01:46:53 +0000 (17:46 -0800)
devm_pm_runtime_enable() can fail due to memory allocation. The current
code ignores its return value, and when pm_runtime_resume_and_get() fails,
it returns directly without unmapping the shared_io region.

Add error handling for devm_pm_runtime_enable(). Reorder cleanup labels
to properly unmap shared_io on pm_runtime_resume_and_get() failure.

Fixes: 2f7b1d8b5505 ("clk: mediatek: Do a runtime PM get on controllers during probe")
Signed-off-by: Haotian Zhang <vulab@iscas.ac.cn>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/mediatek/clk-mtk.c

index 19cd27941747aacf1a03d55e1e13ca21c49086ee..deafe55a96cb1d46842037f82edc682e85307cc3 100644 (file)
@@ -497,14 +497,16 @@ static int __mtk_clk_simple_probe(struct platform_device *pdev,
 
 
        if (mcd->need_runtime_pm) {
-               devm_pm_runtime_enable(&pdev->dev);
+               r = devm_pm_runtime_enable(&pdev->dev);
+               if (r)
+                       goto unmap_io;
                /*
                 * Do a pm_runtime_resume_and_get() to workaround a possible
                 * deadlock between clk_register() and the genpd framework.
                 */
                r = pm_runtime_resume_and_get(&pdev->dev);
                if (r)
-                       return r;
+                       goto unmap_io;
        }
 
        /* Calculate how many clk_hw_onecell_data entries to allocate */
@@ -618,11 +620,11 @@ unregister_fixed_clks:
 free_data:
        mtk_free_clk_data(clk_data);
 free_base:
-       if (mcd->shared_io && base)
-               iounmap(base);
-
        if (mcd->need_runtime_pm)
                pm_runtime_put(&pdev->dev);
+unmap_io:
+       if (mcd->shared_io && base)
+               iounmap(base);
        return r;
 }