summaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorkbuild test robot2015-04-28 06:20:32 +0200
committerMark Brown2015-04-30 22:24:17 +0200
commitfb75ee66c2707f56397eb29c01decf36254e3d46 (patch)
treed48b66b2e569a900b888ba950d0be2fef22b35de /sound
parentASoC: Move bias level update to the core (diff)
downloadkernel-qcow2-linux-fb75ee66c2707f56397eb29c01decf36254e3d46.tar.gz
kernel-qcow2-linux-fb75ee66c2707f56397eb29c01decf36254e3d46.tar.xz
kernel-qcow2-linux-fb75ee66c2707f56397eb29c01decf36254e3d46.zip
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.c5
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,