ASoC: fsl: imx-wm8962: remove an unneeded check
"data->codec_clk" can't be an ERR_PTR here so I have removed the superflous check. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
parent
9c1fc20913
commit
ea8e5e5918
1 changed files with 1 additions and 2 deletions
|
@ -279,8 +279,7 @@ static int imx_wm8962_probe(struct platform_device *pdev)
|
|||
return 0;
|
||||
|
||||
clk_fail:
|
||||
if (!IS_ERR(data->codec_clk))
|
||||
clk_disable_unprepare(data->codec_clk);
|
||||
clk_disable_unprepare(data->codec_clk);
|
||||
fail:
|
||||
if (ssi_np)
|
||||
of_node_put(ssi_np);
|
||||
|
|
Loading…
Reference in a new issue