2022-11-08 22:34:33

by Christian Marangi

[permalink] [raw]
Subject: [PATCH] clk: qcom: krait-cc: use devm variant for clk notifier register

Use devm variant for clk notifier register and correctly handle free
resource on driver remove.

Signed-off-by: Christian Marangi <[email protected]>
---
drivers/clk/qcom/krait-cc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/qcom/krait-cc.c b/drivers/clk/qcom/krait-cc.c
index e91275663973..33a78b7de0bd 100644
--- a/drivers/clk/qcom/krait-cc.c
+++ b/drivers/clk/qcom/krait-cc.c
@@ -64,7 +64,7 @@ static int krait_notifier_register(struct device *dev, struct clk *clk,
int ret = 0;

mux->clk_nb.notifier_call = krait_notifier_cb;
- ret = clk_notifier_register(clk, &mux->clk_nb);
+ ret = devm_clk_notifier_register(dev, clk, &mux->clk_nb);
if (ret)
dev_err(dev, "failed to register clock notifier: %d\n", ret);

--
2.37.2



2022-12-02 21:00:50

by Bjorn Andersson

[permalink] [raw]
Subject: Re: [PATCH] clk: qcom: krait-cc: use devm variant for clk notifier register

On Tue, 8 Nov 2022 22:58:27 +0100, Christian Marangi wrote:
> Use devm variant for clk notifier register and correctly handle free
> resource on driver remove.
>
>

Applied, thanks!

[1/1] clk: qcom: krait-cc: use devm variant for clk notifier register
commit: 3198106a99e73dbc4c02bd5128cec0997c73af82

Best regards,
--
Bjorn Andersson <[email protected]>