diff options
author | kbuild test robot | 2015-04-28 12:20:32 +0800 |
---|---|---|
committer | Mark Brown | 2015-04-30 21:24:17 +0100 |
commit | fb75ee66c2707f56397eb29c01decf36254e3d46 (patch) | |
tree | d48b66b2e569a900b888ba950d0be2fef22b35de /sound | |
parent | f4bf8d770b58862c2af9d17adc2fee05bef8f2c0 (diff) |
ASoC: adau1977: fix simple_return.cocci warnings
sound/soc/codecs/adau1977.c:496:5-8: 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>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/adau1977.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sound/soc/codecs/adau1977.c b/sound/soc/codecs/adau1977.c index c5b1b8e4e7fc..3fb09c165055 100644 --- a/sound/soc/codecs/adau1977.c +++ b/sound/soc/codecs/adau1977.c @@ -493,10 +493,7 @@ static int adau1977_set_bias_level(struct snd_soc_codec *codec, break; } - if (ret) - return ret; - - return 0; + return ret; } static int adau1977_set_tdm_slot(struct snd_soc_dai *dai, unsigned int tx_mask, |