projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2f295f9
)
ALSA: opl3: Mark expected switch fall-through
author
Gustavo A. R. Silva
<gustavo@embeddedor.com>
Wed, 8 Aug 2018 19:25:16 +0000
(14:25 -0500)
committer
Takashi Iwai
<tiwai@suse.de>
Wed, 8 Aug 2018 19:40:14 +0000
(21:40 +0200)
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>
sound/drivers/opl3/opl3_midi.c
patch
|
blob
|
history
diff --git
a/sound/drivers/opl3/opl3_midi.c
b/sound/drivers/opl3/opl3_midi.c
index 471916ca0b6bbc6be7bb2404f529bd111f936143..a33cb744e96c870bf730e756e955e640fe55cd6b 100644
(file)
--- 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;