diff options
author | Colin Ian King <colin.king@canonical.com> | 2021-04-06 20:01:15 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2021-04-08 02:29:31 +0300 |
commit | 657d4d1934f75a2d978c3cf2086495eaa542e7a9 (patch) | |
tree | ea0b80a8078fb13ec99317be767fbebccffc989f /drivers/clk/socfpga | |
parent | abbe1eff907f38d82de8a94000f15b56f6a0204b (diff) | |
download | linux-657d4d1934f75a2d978c3cf2086495eaa542e7a9.tar.xz |
clk: socfpga: arria10: Fix memory leak of socfpga_clk on error return
There is an error return path that is not kfree'ing socfpga_clk leading
to a memory leak. Fix this by adding in the missing kfree call.
Addresses-Coverity: ("Resource leak")
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Link: https://lore.kernel.org/r/20210406170115.430990-1-colin.king@canonical.com
Acked-by: Dinh Nguyen <dinguyen@kernel.org>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/socfpga')
-rw-r--r-- | drivers/clk/socfpga/clk-gate-a10.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/socfpga/clk-gate-a10.c b/drivers/clk/socfpga/clk-gate-a10.c index f5cba8298712..738c53391e39 100644 --- a/drivers/clk/socfpga/clk-gate-a10.c +++ b/drivers/clk/socfpga/clk-gate-a10.c @@ -146,6 +146,7 @@ static void __init __socfpga_gate_init(struct device_node *node, if (IS_ERR(socfpga_clk->sys_mgr_base_addr)) { pr_err("%s: failed to find altr,sys-mgr regmap!\n", __func__); + kfree(socfpga_clk); return; } } |