mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
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>
This commit is contained in:
committed by
Takashi Iwai
parent
2f295f91b7
commit
0c93c5ce10
@@ -368,6 +368,7 @@ void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan)
|
|||||||
instr_4op = 1;
|
instr_4op = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
/* fall through */
|
||||||
default:
|
default:
|
||||||
spin_unlock_irqrestore(&opl3->voice_lock, flags);
|
spin_unlock_irqrestore(&opl3->voice_lock, flags);
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user