diff options
author | Takashi Iwai <tiwai@suse.de> | 2018-10-04 13:59:41 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-10-12 03:31:29 -0400 |
commit | e8c92251a8351f9550a9e20a47364d0a20f28d95 (patch) | |
tree | ac5d736a98e312f6750be51573e267add17f45cd | |
parent | 590b516e25636c696550b44b11fcfed42167adfd (diff) |
ALSA: seq: oss: Use the standard fall-through annotation
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>
-rw-r--r-- | sound/core/seq/oss/seq_oss_timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/seq/oss/seq_oss_timer.c b/sound/core/seq/oss/seq_oss_timer.c index ba127c22539a..0778d28421da 100644 --- a/sound/core/seq/oss/seq_oss_timer.c +++ b/sound/core/seq/oss/seq_oss_timer.c | |||
@@ -92,7 +92,7 @@ snd_seq_oss_process_timer_event(struct seq_oss_timer *rec, union evrec *ev) | |||
92 | case TMR_WAIT_REL: | 92 | case TMR_WAIT_REL: |
93 | parm += rec->cur_tick; | 93 | parm += rec->cur_tick; |
94 | rec->realtime = 0; | 94 | rec->realtime = 0; |
95 | /* fall through and continue to next */ | 95 | /* fall through */ |
96 | case TMR_WAIT_ABS: | 96 | case TMR_WAIT_ABS: |
97 | if (parm == 0) { | 97 | if (parm == 0) { |
98 | rec->realtime = 1; | 98 | rec->realtime = 1; |