diff options
author | Xiubo Li <lixiubo@cmss.chinamobile.com> | 2016-01-18 22:13:12 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-01-22 11:46:17 -0500 |
commit | 22363e758770fa24edcc67ba33326f007bcd66a8 (patch) | |
tree | ea674b818789f535721b423931d0bafa8d429e30 | |
parent | 822ad70a2f5c420da5baa9f4354e6b7813ca6da9 (diff) |
ASoC: ab8500: remove the useless 'break' after 'return'
'break' here is not useful after 'return' or 'goto'.
Signed-off-by: Xiubo Li <lixiubo@cmss.chinamobile.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | sound/soc/codecs/ab8500-codec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/ab8500-codec.c b/sound/soc/codecs/ab8500-codec.c index affb192238a4..b6820a1f16c7 100644 --- a/sound/soc/codecs/ab8500-codec.c +++ b/sound/soc/codecs/ab8500-codec.c | |||
@@ -2134,7 +2134,6 @@ static int ab8500_codec_set_dai_fmt(struct snd_soc_dai *dai, unsigned int fmt) | |||
2134 | "%s: ERROR: Unsupporter master mask 0x%x\n", | 2134 | "%s: ERROR: Unsupporter master mask 0x%x\n", |
2135 | __func__, fmt & SND_SOC_DAIFMT_MASTER_MASK); | 2135 | __func__, fmt & SND_SOC_DAIFMT_MASTER_MASK); |
2136 | return -EINVAL; | 2136 | return -EINVAL; |
2137 | break; | ||
2138 | } | 2137 | } |
2139 | 2138 | ||
2140 | snd_soc_update_bits(codec, AB8500_DIGIFCONF3, mask, val); | 2139 | snd_soc_update_bits(codec, AB8500_DIGIFCONF3, mask, val); |