]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ALSA: seq: oss: Use the standard fall-through annotation
authorTakashi Iwai <tiwai@suse.de>
Thu, 4 Oct 2018 17:59:41 +0000 (19:59 +0200)
committerTakashi Iwai <tiwai@suse.de>
Fri, 12 Oct 2018 07:31:29 +0000 (09:31 +0200)
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>
sound/core/seq/oss/seq_oss_timer.c

index ba127c22539a0ffe06e007ae5398d4e60370285b..0778d28421da438daa1097958d2000188fe46f1c 100644 (file)
@@ -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;