diff options
author | Daniel Baluta <daniel.baluta@nxp.com> | 2017-03-28 11:58:52 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-03-29 14:50:12 +0300 |
commit | db22d189453cee666f8da2e67419f14f4b2fd9d1 (patch) | |
tree | 02439e27cfd3a250fd8ce2d1f97f580fc1e04cb9 /sound/soc/fsl/imx-wm8962.c | |
parent | fd8ba1e3093e2f405df20c7f6c1150187ecdb18b (diff) | |
download | linux-db22d189453cee666f8da2e67419f14f4b2fd9d1.tar.xz |
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>
Diffstat (limited to 'sound/soc/fsl/imx-wm8962.c')
-rw-r--r-- | sound/soc/fsl/imx-wm8962.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/soc/fsl/imx-wm8962.c b/sound/soc/fsl/imx-wm8962.c index 3d894d9123e0..52659faa2eb9 100644 --- a/sound/soc/fsl/imx-wm8962.c +++ b/sound/soc/fsl/imx-wm8962.c @@ -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"; |