diff options
author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2018-08-08 14:25:16 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-08-08 21:40:14 +0200 |
commit | 0c93c5ce107659069d16fa34ddce465acdf9d996 (patch) | |
tree | 647473289a9fe092627c4d8b6595e58c5e04e5d4 /sound/drivers | |
parent | 2f295f91b740f0055735a7528f8f4cf8b3111239 (diff) | |
download | linux-0c93c5ce107659069d16fa34ddce465acdf9d996.tar.bz2 |
ALSA: opl3: Mark expected switch fall-through
In preparation to enabling -Wimplicit-fallthrough, mark switch cases
where we are expecting to fall through.
Addresses-Coverity-ID: 114878 ("Missing break in switch")
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/drivers')
-rw-r--r-- | sound/drivers/opl3/opl3_midi.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/drivers/opl3/opl3_midi.c b/sound/drivers/opl3/opl3_midi.c index 471916ca0b6b..a33cb744e96c 100644 --- a/sound/drivers/opl3/opl3_midi.c +++ b/sound/drivers/opl3/opl3_midi.c @@ -368,6 +368,7 @@ void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan) instr_4op = 1; break; } + /* fall through */ default: spin_unlock_irqrestore(&opl3->voice_lock, flags); return; |