Re: [PATCH 2/5] ASoC: wcd934x: use the clock provider API

2021-04-12 Thread Stephen Boyd
Quoting Jerome Brunet (2021-04-10 04:13:53)
> Clock providers should use the clk_hw API

It sort of already is :)

> 
> Signed-off-by: Jerome Brunet 
> ---

Reviewed-by: Stephen Boyd 


[PATCH 2/5] ASoC: wcd934x: use the clock provider API

2021-04-10 Thread Jerome Brunet
Clock providers should use the clk_hw API

Signed-off-by: Jerome Brunet 
---
 sound/soc/codecs/wcd934x.c | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sound/soc/codecs/wcd934x.c b/sound/soc/codecs/wcd934x.c
index 5fe403307b72..ae3ea136a9f8 100644
--- a/sound/soc/codecs/wcd934x.c
+++ b/sound/soc/codecs/wcd934x.c
@@ -2116,11 +2116,13 @@ static struct clk *wcd934x_register_mclk_output(struct 
wcd934x_codec *wcd)
wcd->hw.init = 
 
hw = >hw;
-   ret = clk_hw_register(wcd->dev->parent, hw);
+   ret = devm_clk_hw_register(wcd->dev->parent, hw);
if (ret)
return ERR_PTR(ret);
 
-   of_clk_add_provider(np, of_clk_src_simple_get, hw->clk);
+   ret = devm_of_clk_add_hw_provider(dev, of_clk_hw_simple_get, hw);
+   if (ret)
+   return ERR_PTR(ret);
 
return NULL;
 }
-- 
2.30.2