diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-09-13 14:08:15 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-09-17 09:55:48 -0700 |
commit | 597d18325acdb48eb516ca9ef33d5148e79ca3bb (patch) | |
tree | 58c7f63238682288a40a2f820ab23934122c6abe /sound | |
parent | d9b84a15892c02334ac8a5c28865ae54168d9b22 (diff) | |
download | linux-stable-597d18325acdb48eb516ca9ef33d5148e79ca3bb.tar.gz linux-stable-597d18325acdb48eb516ca9ef33d5148e79ca3bb.tar.bz2 linux-stable-597d18325acdb48eb516ca9ef33d5148e79ca3bb.zip |
ASoC: es8328: Fix fall-through annotations
Replace "fallthru" with a proper "fall through" annotation.
This fix is part of the ongoing efforts to enabling
-Wimplicit-fallthrough
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/codecs/es8328.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/codecs/es8328.c b/sound/soc/codecs/es8328.c index e9fc2fd97d2f..3aedd609626c 100644 --- a/sound/soc/codecs/es8328.c +++ b/sound/soc/codecs/es8328.c @@ -566,14 +566,14 @@ static int es8328_set_sysclk(struct snd_soc_dai *codec_dai, break; case 22579200: mclkdiv2 = 1; - /* fallthru */ + /* fall through */ case 11289600: es8328->sysclk_constraints = &constraints_11289; es8328->mclk_ratios = ratios_11289; break; case 24576000: mclkdiv2 = 1; - /* fallthru */ + /* fall through */ case 12288000: es8328->sysclk_constraints = &constraints_12288; es8328->mclk_ratios = ratios_12288; |