Commit db22d189 authored by Daniel Baluta's avatar Daniel Baluta Committed by Mark Brown

ASoC: imx-wm8962: Fix codec_clk cleanup

Resource managed devm_clk_get only works with platform's device dev.
Reported-by: default avatarNicolin Chen <nicoleotsuka@gmail.com>
Signed-off-by: default avatarDaniel Baluta <daniel.baluta@nxp.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent fd8ba1e3
......@@ -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";
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment