diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-09-13 13:43:47 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-09-14 15:27:04 +0200 |
commit | 05e2ec3b00edb277b325489e0d1de3570ad16359 (patch) | |
tree | 692a0a734c1482f69bbff992638e0ac1d478a539 /sound/pci/atiixp.c | |
parent | 7064f376d4a10686f51c879401a569bb4babf9c6 (diff) | |
download | linux-05e2ec3b00edb277b325489e0d1de3570ad16359.tar.gz linux-05e2ec3b00edb277b325489e0d1de3570ad16359.tar.bz2 linux-05e2ec3b00edb277b325489e0d1de3570ad16359.zip |
ALSA: atiixp: 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: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/atiixp.c')
-rw-r--r-- | sound/pci/atiixp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/atiixp.c b/sound/pci/atiixp.c index a1e4944dcfe8..1a41f8c80243 100644 --- a/sound/pci/atiixp.c +++ b/sound/pci/atiixp.c @@ -903,15 +903,15 @@ static int snd_atiixp_playback_prepare(struct snd_pcm_substream *substream) case 8: data |= ATI_REG_OUT_DMA_SLOT_BIT(10) | ATI_REG_OUT_DMA_SLOT_BIT(11); - /* fallthru */ + /* fall through */ case 6: data |= ATI_REG_OUT_DMA_SLOT_BIT(7) | ATI_REG_OUT_DMA_SLOT_BIT(8); - /* fallthru */ + /* fall through */ case 4: data |= ATI_REG_OUT_DMA_SLOT_BIT(6) | ATI_REG_OUT_DMA_SLOT_BIT(9); - /* fallthru */ + /* fall through */ default: data |= ATI_REG_OUT_DMA_SLOT_BIT(3) | ATI_REG_OUT_DMA_SLOT_BIT(4); |