]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ASoC: hisilicon: fix fall-through annotations
authorGustavo A. R. Silva <gustavo@embeddedor.com>
Thu, 13 Sep 2018 19:11:07 +0000 (14:11 -0500)
committerMark Brown <broonie@kernel.org>
Mon, 17 Sep 2018 17:30:23 +0000 (10:30 -0700)
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>
sound/soc/hisilicon/hi6210-i2s.c

index 53344a3b7a608ab7997f70d02643d194a512eaf2..a69e5b11b3dab92dad66306b37ddbbdc04698cf6 100644 (file)
@@ -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;