diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-09-13 14:11:07 -0500 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2018-09-17 10:30:23 -0700 |
commit | 982e386379f01aa6254e3313cff1edcb04c66685 (patch) | |
tree | a1acc937f7a3b890ae64def80e88354952203216 /sound/soc/hisilicon | |
parent | 597d18325acdb48eb516ca9ef33d5148e79ca3bb (diff) | |
download | linux-982e386379f01aa6254e3313cff1edcb04c66685.tar.bz2 |
ASoC: hisilicon: 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/soc/hisilicon')
-rw-r--r-- | sound/soc/hisilicon/hi6210-i2s.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/hisilicon/hi6210-i2s.c b/sound/soc/hisilicon/hi6210-i2s.c index 53344a3b7a60..a69e5b11b3da 100644 --- a/sound/soc/hisilicon/hi6210-i2s.c +++ b/sound/soc/hisilicon/hi6210-i2s.c @@ -269,13 +269,13 @@ static int hi6210_i2s_hw_params(struct snd_pcm_substream *substream, switch (params_format(params)) { case SNDRV_PCM_FORMAT_U16_LE: signed_data = HII2S_I2S_CFG__S2_CODEC_DATA_FORMAT; - /* fallthru */ + /* fall through */ case SNDRV_PCM_FORMAT_S16_LE: bits = HII2S_BITS_16; break; case SNDRV_PCM_FORMAT_U24_LE: signed_data = HII2S_I2S_CFG__S2_CODEC_DATA_FORMAT; - /* fallthru */ + /* fall through */ case SNDRV_PCM_FORMAT_S24_LE: bits = HII2S_BITS_24; break; |