ALSA: Replace with fallthrough pseudo keyword in the remaining places
authorTakashi Iwai <tiwai@suse.de>
Thu, 9 Jul 2020 11:17:50 +0000 (13:17 +0200)
committerTakashi Iwai <tiwai@suse.de>
Thu, 9 Jul 2020 17:10:43 +0000 (19:10 +0200)
A few places (except for ASoC) are left unconverted for the new
fallthrough pseudo keyword.  Now replace them all.

Reviewed-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Link: https://lore.kernel.org/r/20200709111750.8337-4-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/isa/es18xx.c
sound/pci/au88x0/au88x0_core.c
sound/pci/oxygen/oxygen_pcm.c
sound/usb/caiaq/audio.c
sound/usb/caiaq/device.c
sound/usb/midi.c

index d1135f6..b417a75 100644 (file)
@@ -998,7 +998,7 @@ static int snd_es18xx_put_mux(struct snd_kcontrol *kcontrol, struct snd_ctl_elem
                        val = 3;
                } else
                        retVal = snd_es18xx_mixer_bits(chip, 0x7a, 0x08, 0x00) != 0x00;
-               /* fall through */
+               fallthrough;
  /* 4 source chips */
        case 0x1868:
        case 0x1878:
index f5512b7..5180f1b 100644 (file)
@@ -1103,7 +1103,7 @@ vortex_adbdma_setbuffers(vortex_t * vortex, int adbdma,
                hwwrite(vortex->mmio,
                        VORTEX_ADBDMA_BUFBASE + (adbdma << 4) + 0xc,
                        snd_pcm_sgbuf_get_addr(dma->substream, psize * 3));
-               /* fall through */
+               fallthrough;
                /* 3 pages */
        case 3:
                dma->cfg0 |= 0x12000000;
@@ -1111,14 +1111,14 @@ vortex_adbdma_setbuffers(vortex_t * vortex, int adbdma,
                hwwrite(vortex->mmio,
                        VORTEX_ADBDMA_BUFBASE + (adbdma << 4) + 0x8,
                        snd_pcm_sgbuf_get_addr(dma->substream, psize * 2));
-               /* fall through */
+               fallthrough;
                /* 2 pages */
        case 2:
                dma->cfg0 |= 0x88000000 | 0x44000000 | 0x10000000 | (psize - 1);
                hwwrite(vortex->mmio,
                        VORTEX_ADBDMA_BUFBASE + (adbdma << 4) + 0x4,
                        snd_pcm_sgbuf_get_addr(dma->substream, psize));
-               /* fall through */
+               fallthrough;
                /* 1 page */
        case 1:
                dma->cfg0 |= 0x80000000 | 0x40000000 | ((psize - 1) << 0xc);
@@ -1381,20 +1381,20 @@ vortex_wtdma_setbuffers(vortex_t * vortex, int wtdma,
                dma->cfg1 |= 0x88000000 | 0x44000000 | 0x30000000 | (psize-1);
                hwwrite(vortex->mmio, VORTEX_WTDMA_BUFBASE + (wtdma << 4) + 0xc,
                        snd_pcm_sgbuf_get_addr(dma->substream, psize * 3));
-               /* fall through */
+               fallthrough;
                /* 3 pages */
        case 3:
                dma->cfg0 |= 0x12000000;
                dma->cfg1 |= 0x80000000 | 0x40000000 | ((psize-1) << 0xc);
                hwwrite(vortex->mmio, VORTEX_WTDMA_BUFBASE + (wtdma << 4)  + 0x8,
                        snd_pcm_sgbuf_get_addr(dma->substream, psize * 2));
-               /* fall through */
+               fallthrough;
                /* 2 pages */
        case 2:
                dma->cfg0 |= 0x88000000 | 0x44000000 | 0x10000000 | (psize-1);
                hwwrite(vortex->mmio, VORTEX_WTDMA_BUFBASE + (wtdma << 4) + 0x4,
                        snd_pcm_sgbuf_get_addr(dma->substream, psize));
-               /* fall through */
+               fallthrough;
                /* 1 page */
        case 1:
                dma->cfg0 |= 0x80000000 | 0x40000000 | ((psize-1) << 0xc);
index 75b25ec..b2a3fcf 100644 (file)
@@ -137,7 +137,7 @@ static int oxygen_open(struct snd_pcm_substream *substream,
                                               SNDRV_PCM_RATE_64000);
                        runtime->hw.rate_min = 44100;
                }
-               /* fall through */
+               fallthrough;
        case PCM_A:
        case PCM_B:
                runtime->hw.fifo_size = 0;
index e9243d5..3b6bb2c 100644 (file)
@@ -820,7 +820,7 @@ int snd_usb_caiaq_audio_init(struct snd_usb_caiaqdev *cdev)
        case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_SESSIONIO):
        case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_GUITARRIGMOBILE):
                cdev->samplerates |= SNDRV_PCM_RATE_192000;
-               /* fall thru */
+               fallthrough;
        case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AUDIO2DJ):
        case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AUDIO4DJ):
        case USB_ID(USB_VID_NATIVEINSTRUMENTS, USB_PID_AUDIO8DJ):
index b669e11..2af3b7e 100644 (file)
@@ -187,7 +187,7 @@ static void usb_ep1_command_reply_dispatch (struct urb* urb)
                        break;
                }
 #ifdef CONFIG_SND_USB_CAIAQ_INPUT
-               /* fall through */
+               fallthrough;
        case EP1_CMD_READ_ERP:
        case EP1_CMD_READ_ANALOG:
                snd_usb_caiaq_input_dispatch(cdev, buf, urb->actual_length);
index 047b905..fe3fd6e 100644 (file)
@@ -2401,7 +2401,7 @@ int __snd_usbmidi_create(struct snd_card *card,
                break;
        case QUIRK_MIDI_US122L:
                umidi->usb_protocol_ops = &snd_usbmidi_122l_ops;
-               /* fall through */
+               fallthrough;
        case QUIRK_MIDI_FIXED_ENDPOINT:
                memcpy(&endpoints[0], quirk->data,
                       sizeof(struct snd_usb_midi_endpoint_info));