mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 11:32:04 +00:00
ASoC: imx-wm8962: Fix codec_clk cleanup
Resource managed devm_clk_get only works with platform's device dev. Reported-by: Nicolin Chen <nicoleotsuka@gmail.com> Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
fd8ba1e309
commit
db22d18945
@ -231,7 +231,7 @@ static int imx_wm8962_probe(struct platform_device *pdev)
|
||||
goto fail;
|
||||
}
|
||||
|
||||
codec_clk = devm_clk_get(&codec_dev->dev, NULL);
|
||||
codec_clk = clk_get(&codec_dev->dev, NULL);
|
||||
if (IS_ERR(codec_clk)) {
|
||||
ret = PTR_ERR(codec_clk);
|
||||
dev_err(&codec_dev->dev, "failed to get codec clk: %d\n", ret);
|
||||
@ -239,6 +239,7 @@ static int imx_wm8962_probe(struct platform_device *pdev)
|
||||
}
|
||||
|
||||
data->clk_frequency = clk_get_rate(codec_clk);
|
||||
clk_put(codec_clk);
|
||||
|
||||
data->dai.name = "HiFi";
|
||||
data->dai.stream_name = "HiFi";
|
||||
|
Loading…
Reference in New Issue
Block a user