Commit c8d8ff0a authored by kbuild test robot's avatar kbuild test robot Committed by Mark Brown

ASoC: zx: fix simple_return.cocci warnings

sound/soc/zte/zx296702-spdif.c:191:1-4: WARNING: end returns can be simpified

 Simplify a trivial if-return sequence.  Possibly combine with a
 preceding function call.
Generated by: scripts/coccinelle/misc/simple_return.cocci
Signed-off-by: default avatarFengguang Wu <fengguang.wu@intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 3898182b
...@@ -188,11 +188,7 @@ static int zx_spdif_hw_params(struct snd_pcm_substream *substream, ...@@ -188,11 +188,7 @@ static int zx_spdif_hw_params(struct snd_pcm_substream *substream,
ret = zx_spdif_chanstats(zx_spdif->reg_base, rate); ret = zx_spdif_chanstats(zx_spdif->reg_base, rate);
if (ret) if (ret)
return ret; return ret;
ret = clk_set_rate(spdif->dai_clk, rate * ch_num * ZX_SPDIF_CLK_RAT); return clk_set_rate(spdif->dai_clk, rate * ch_num * ZX_SPDIF_CLK_RAT);
if (ret)
return ret;
return 0;
} }
static void zx_spdif_cfg_tx(void __iomem *base, int on) static void zx_spdif_cfg_tx(void __iomem *base, int on)
......
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