Skip to content

Commit

Permalink
ALSA: seq: oss: Use the standard fall-through annotation
Browse files Browse the repository at this point in the history
As a preparatory patch for the upcoming -Wimplicit-fallthrough
compiler checks, replace with the standard "fall through" annotation.
Unfortunately gcc doesn't understand a chattier text.

Signed-off-by: Takashi Iwai <tiwai@suse.de>
  • Loading branch information
Takashi Iwai committed Oct 12, 2018
1 parent 590b516 commit e8c9225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/core/seq/oss/seq_oss_timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ snd_seq_oss_process_timer_event(struct seq_oss_timer *rec, union evrec *ev)
case TMR_WAIT_REL:
parm += rec->cur_tick;
rec->realtime = 0;
/* fall through and continue to next */
/* fall through */
case TMR_WAIT_ABS:
if (parm == 0) {
rec->realtime = 1;
Expand Down

0 comments on commit e8c9225

Please sign in to comment.