clk: ti: clockdomain: fix static checker warning
authorTero Kristo <t-kristo@ti.com>
Mon, 7 Sep 2020 08:25:59 +0000 (11:25 +0300)
committerStephen Boyd <sboyd@kernel.org>
Tue, 22 Sep 2020 20:00:07 +0000 (13:00 -0700)
Fix a memory leak induced by not calling clk_put after doing of_clk_get.

Reported-by: Dan Murphy <dmurphy@ti.com>
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Link: https://lore.kernel.org/r/20200907082600.454-3-t-kristo@ti.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/ti/clockdomain.c

index ee56306..700b7f4 100644 (file)
@@ -148,10 +148,12 @@ static void __init of_ti_clockdomain_setup(struct device_node *node)
                if (!omap2_clk_is_hw_omap(clk_hw)) {
                        pr_warn("can't setup clkdm for basic clk %s\n",
                                __clk_get_name(clk));
+                       clk_put(clk);
                        continue;
                }
                to_clk_hw_omap(clk_hw)->clkdm_name = clkdm_name;
                omap2_init_clk_clkdm(clk_hw);
+               clk_put(clk);
        }
 }