diff options
author | Takashi Iwai <tiwai@suse.de> | 2020-07-09 13:17:50 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2020-07-09 19:10:43 +0200 |
commit | e2d413f9346149f056ffe083c999e2c136ca6788 (patch) | |
tree | e560dea9752dc1303570aed3f69336d9b58505c0 /sound/pci/oxygen | |
parent | 401b3e6e1975b58a29035490a29e4e3c2757373d (diff) | |
download | linux-e2d413f9346149f056ffe083c999e2c136ca6788.tar.bz2 |
ALSA: Replace with fallthrough pseudo keyword in the remaining places
A few places (except for ASoC) are left unconverted for the new
fallthrough pseudo keyword. Now replace them all.
Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Link: https://lore.kernel.org/r/20200709111750.8337-4-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/oxygen')
-rw-r--r-- | sound/pci/oxygen/oxygen_pcm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/oxygen/oxygen_pcm.c b/sound/pci/oxygen/oxygen_pcm.c index 75b25ecf83a9..b2a3fcfe31d4 100644 --- a/sound/pci/oxygen/oxygen_pcm.c +++ b/sound/pci/oxygen/oxygen_pcm.c @@ -137,7 +137,7 @@ static int oxygen_open(struct snd_pcm_substream *substream, SNDRV_PCM_RATE_64000); runtime->hw.rate_min = 44100; } - /* fall through */ + fallthrough; case PCM_A: case PCM_B: runtime->hw.fifo_size = 0; |