]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
clk: si5341: Fix clock HW provider cleanup
authorRobert Hancock <robert.hancock@calian.com>
Wed, 12 Jan 2022 20:38:16 +0000 (14:38 -0600)
committerStephen Boyd <sboyd@kernel.org>
Thu, 13 Jan 2022 21:20:54 +0000 (13:20 -0800)
The call to of_clk_add_hw_provider was not undone on remove or on probe
failure, which could cause an oops on a subsequent attempt to retrieve
clocks for the removed device. Switch to the devm version of the
function to avoid this issue.

Fixes: 3044a860fd09 ("clk: Add Si5341/Si5340 driver")
Signed-off-by: Robert Hancock <robert.hancock@calian.com>
Link: https://lore.kernel.org/r/20220112203816.1784610-1-robert.hancock@calian.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
drivers/clk/clk-si5341.c

index 57ae183982d8c31dcdebd73cc61ad2e73e62671b..f7b41366666e544c2341c7dde1abc9be659764b5 100644 (file)
@@ -1740,7 +1740,7 @@ static int si5341_probe(struct i2c_client *client,
                        clk_prepare(data->clk[i].hw.clk);
        }
 
-       err = of_clk_add_hw_provider(client->dev.of_node, of_clk_si5341_get,
+       err = devm_of_clk_add_hw_provider(&client->dev, of_clk_si5341_get,
                        data);
        if (err) {
                dev_err(&client->dev, "unable to add clk provider\n");