diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2013-11-08 13:54:44 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-11-08 14:22:07 +0400 |
commit | ea8e5e591801b0d0c25dc0a0f1f5b508be7004cb (patch) | |
tree | f67b27174fd7399a3f4f2d42ba846cc33b720d7c /sound/soc/fsl | |
parent | 9c1fc209138a7c1ee439c7b05fde484441c84e7e (diff) | |
download | linux-ea8e5e591801b0d0c25dc0a0f1f5b508be7004cb.tar.xz |
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>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r-- | sound/soc/fsl/imx-wm8962.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/fsl/imx-wm8962.c b/sound/soc/fsl/imx-wm8962.c index 8e5b2c6a16d9..f7be44ad443a 100644 --- a/sound/soc/fsl/imx-wm8962.c +++ b/sound/soc/fsl/imx-wm8962.c @@ -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); |