mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 20:48:49 +08:00
ASoC: wcd934x: use the clock provider API
Clock providers should use the clk_hw API Reviewed-by: Stephen Boyd <sboyd@kernel.org> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Link: https://lore.kernel.org/r/20210421120512.413057-3-jbrunet@baylibre.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
65d1cce726
commit
104c3a9ed0
@ -2116,11 +2116,13 @@ static struct clk *wcd934x_register_mclk_output(struct wcd934x_codec *wcd)
|
||||
wcd->hw.init = &init;
|
||||
|
||||
hw = &wcd->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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user