Skip to content

Commit

Permalink
ASoC: zx: fix simple_return.cocci warnings
Browse files Browse the repository at this point in the history
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: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
kbuild test robot authored and Mark Brown committed Jun 4, 2015
1 parent 3898182 commit c8d8ff0
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions sound/soc/zte/zx296702-spdif.c
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,7 @@ static int zx_spdif_hw_params(struct snd_pcm_substream *substream,
ret = zx_spdif_chanstats(zx_spdif->reg_base, rate);
if (ret)
return ret;
ret = clk_set_rate(spdif->dai_clk, rate * ch_num * ZX_SPDIF_CLK_RAT);
if (ret)
return ret;

return 0;
return clk_set_rate(spdif->dai_clk, rate * ch_num * ZX_SPDIF_CLK_RAT);
}

static void zx_spdif_cfg_tx(void __iomem *base, int on)
Expand Down

0 comments on commit c8d8ff0

Please sign in to comment.