ALSA: Use fallthrough pseudo-keyword
authorGustavo A. R. Silva <gustavoars@kernel.org>
Wed, 8 Jul 2020 20:32:36 +0000 (15:32 -0500)
committerTakashi Iwai <tiwai@suse.de>
Thu, 9 Jul 2020 11:01:29 +0000 (13:01 +0200)
Replace the existing /* fall through */ comments and its variants with
the new pseudo-keyword macro fallthrough[1]. Also, remove unnecessary
fall-through markings when it is the case.

[1] https://www.kernel.org/doc/html/latest/process/deprecated.html?highlight=fallthrough#implicit-switch-case-fall-through

Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Link: https://lore.kernel.org/r/20200708203236.GA5112@embeddedor
Signed-off-by: Takashi Iwai <tiwai@suse.de>
35 files changed:
sound/atmel/ac97c.c
sound/core/memalloc.c
sound/core/oss/pcm_oss.c
sound/core/oss/pcm_plugin.c
sound/core/pcm_native.c
sound/core/seq/oss/seq_oss_timer.c
sound/core/seq/seq_midi_emul.c
sound/drivers/opl3/opl3_midi.c
sound/isa/galaxy/galaxy.c
sound/isa/msnd/msnd_pinnacle_mixer.c
sound/isa/opti9xx/miro.c
sound/isa/opti9xx/opti92x-ad1848.c
sound/isa/sb/sb8_main.c
sound/oss/dmasound/dmasound_atari.c
sound/oss/dmasound/dmasound_core.c
sound/pci/ac97/ac97_codec.c
sound/pci/atiixp.c
sound/pci/azt3328.c
sound/pci/echoaudio/echoaudio.c
sound/pci/emu10k1/emupcm.c
sound/pci/hda/hda_beep.c
sound/pci/hda/patch_conexant.c
sound/pci/hda/patch_realtek.c
sound/pci/ice1712/delta.c
sound/pci/intel8x0.c
sound/pci/mixart/mixart.c
sound/pci/mixart/mixart_core.c
sound/pci/nm256/nm256.c
sound/pci/ymfpci/ymfpci_main.c
sound/pcmcia/pdaudiocf/pdaudiocf_pcm.c
sound/sparc/dbri.c
sound/usb/card.c
sound/usb/clock.c
sound/usb/pcm.c
sound/usb/stream.c

index a1dce9725b98e48442f44bef421fc1ac62f12d76..a62f1cdad68feae1a316ef1c90a07694020b1b43 100644 (file)
@@ -356,14 +356,14 @@ atmel_ac97c_playback_trigger(struct snd_pcm_substream *substream, int cmd)
        camr = ac97c_readl(chip, CAMR);
 
        switch (cmd) {
-       case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: /* fall through */
-       case SNDRV_PCM_TRIGGER_RESUME: /* fall through */
+       case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
+       case SNDRV_PCM_TRIGGER_RESUME:
        case SNDRV_PCM_TRIGGER_START:
                ptcr = ATMEL_PDC_TXTEN;
                camr |= AC97C_CMR_CENA | AC97C_CSR_ENDTX;
                break;
-       case SNDRV_PCM_TRIGGER_PAUSE_PUSH: /* fall through */
-       case SNDRV_PCM_TRIGGER_SUSPEND: /* fall through */
+       case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
+       case SNDRV_PCM_TRIGGER_SUSPEND:
        case SNDRV_PCM_TRIGGER_STOP:
                ptcr |= ATMEL_PDC_TXTDIS;
                if (chip->opened <= 1)
@@ -388,14 +388,14 @@ atmel_ac97c_capture_trigger(struct snd_pcm_substream *substream, int cmd)
        ptcr = readl(chip->regs + ATMEL_PDC_PTSR);
 
        switch (cmd) {
-       case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: /* fall through */
-       case SNDRV_PCM_TRIGGER_RESUME: /* fall through */
+       case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
+       case SNDRV_PCM_TRIGGER_RESUME:
        case SNDRV_PCM_TRIGGER_START:
                ptcr = ATMEL_PDC_RXTEN;
                camr |= AC97C_CMR_CENA | AC97C_CSR_ENDRX;
                break;
-       case SNDRV_PCM_TRIGGER_PAUSE_PUSH: /* fall through */
-       case SNDRV_PCM_TRIGGER_SUSPEND: /* fall through */
+       case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
+       case SNDRV_PCM_TRIGGER_SUSPEND:
        case SNDRV_PCM_TRIGGER_STOP:
                ptcr |= ATMEL_PDC_RXTDIS;
                if (chip->opened <= 1)
index d8f28d03098548463b65da58244b228a4124d258..ad74ea9cbff5475a6162d85f977d03c2341c8c21 100644 (file)
@@ -158,7 +158,7 @@ int snd_dma_alloc_pages(int type, struct device *device, size_t size,
                 */
                dmab->dev.type = SNDRV_DMA_TYPE_DEV;
 #endif /* CONFIG_GENERIC_ALLOCATOR */
-               /* fall through */
+               fallthrough;
        case SNDRV_DMA_TYPE_DEV:
        case SNDRV_DMA_TYPE_DEV_UC:
                snd_malloc_dev_pages(dmab, size);
index 68630244b00ff21bf85f94b2c5330355e16dd04e..327ec42a36b0986b380b7c4aa3e0bb065223d52e 100644 (file)
@@ -2851,7 +2851,7 @@ static int snd_pcm_oss_mmap(struct file *file, struct vm_area_struct *area)
                substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_PLAYBACK];
                if (substream)
                        break;
-               /* Fall through */
+               fallthrough;
        case VM_READ:
                substream = pcm_oss_file->streams[SNDRV_PCM_STREAM_CAPTURE];
                break;
index 1545f8fdb4db6c4c7420151b7014ad8830132622..d5ca161d588c504fa79257a300a958313b98c74d 100644 (file)
@@ -357,7 +357,7 @@ snd_pcm_format_t snd_pcm_plug_slave_format(snd_pcm_format_t format,
                                if (snd_mask_test(format_mask, (__force int)format1))
                                        return format1;
                        }
-                       /* fall through */
+                       fallthrough;
                default:
                        return (__force snd_pcm_format_t)-EINVAL;
                }
index 1e51c849d3d4c00dc84f6da3983cbb4d6e224803..9e0b2d73faf6bfb066bb0c980b0311a4083fdedd 100644 (file)
@@ -1903,7 +1903,7 @@ static int snd_pcm_prepare(struct snd_pcm_substream *substream,
        switch (substream->runtime->status->state) {
        case SNDRV_PCM_STATE_PAUSED:
                snd_pcm_pause(substream, false);
-               /* fallthru */
+               fallthrough;
        case SNDRV_PCM_STATE_SUSPENDED:
                snd_pcm_stop(substream, SNDRV_PCM_STATE_SETUP);
                break;
@@ -2811,7 +2811,7 @@ static int do_pcm_hwsync(struct snd_pcm_substream *substream)
        case SNDRV_PCM_STATE_DRAINING:
                if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
                        return -EBADFD;
-               /* Fall through */
+               fallthrough;
        case SNDRV_PCM_STATE_RUNNING:
                return snd_pcm_update_hw_ptr(substream);
        case SNDRV_PCM_STATE_PREPARED:
@@ -3814,7 +3814,7 @@ static int snd_pcm_mmap(struct file *file, struct vm_area_struct *area)
        case SNDRV_PCM_MMAP_OFFSET_STATUS_OLD:
                if (pcm_file->no_compat_mmap || !IS_ENABLED(CONFIG_64BIT))
                        return -ENXIO;
-               /* fallthrough */
+               fallthrough;
        case SNDRV_PCM_MMAP_OFFSET_STATUS_NEW:
                if (!pcm_status_mmap_allowed(pcm_file))
                        return -ENXIO;
@@ -3822,7 +3822,7 @@ static int snd_pcm_mmap(struct file *file, struct vm_area_struct *area)
        case SNDRV_PCM_MMAP_OFFSET_CONTROL_OLD:
                if (pcm_file->no_compat_mmap || !IS_ENABLED(CONFIG_64BIT))
                        return -ENXIO;
-               /* fallthrough */
+               fallthrough;
        case SNDRV_PCM_MMAP_OFFSET_CONTROL_NEW:
                if (!pcm_control_mmap_allowed(pcm_file))
                        return -ENXIO;
index a35d429e4c27c15bac223221242413abc85f9c47..f9f57232a83f9c8e4f06b87c354d15f3452b8ca3 100644 (file)
@@ -79,7 +79,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 */
+                       fallthrough;
                case TMR_WAIT_ABS:
                        if (parm == 0) {
                                rec->realtime = 1;
index 198f285594e3104ad0a82f736b470ac82449ca58..81d2ef5e58116d5cfe7039ba86382329cad6c4b4 100644 (file)
@@ -309,7 +309,7 @@ do_control(const struct snd_midi_op *ops, void *drv,
                break;
        case MIDI_CTL_MSB_DATA_ENTRY:
                chan->control[MIDI_CTL_LSB_DATA_ENTRY] = 0;
-               /* fall through */
+               fallthrough;
        case MIDI_CTL_LSB_DATA_ENTRY:
                if (chan->param_type == SNDRV_MIDI_PARAM_TYPE_REGISTERED)
                        rpn(ops, drv, chan, chset);
index 2f6e8023e05cd19c4f6b4099a89e1f91642825e5..eb23c55323ae1d5166d8093ef5d967088b4929db 100644 (file)
@@ -354,7 +354,7 @@ void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan)
                        instr_4op = 1;
                        break;
                }
-               /* fall through */
+               fallthrough;
        default:
                spin_unlock_irqrestore(&opl3->voice_lock, flags);
                return;
@@ -443,7 +443,7 @@ void snd_opl3_note_on(void *p, int note, int vel, struct snd_midi_channel *chan)
                switch (connection) {
                case 0x03:
                        snd_opl3_calc_volume(&vol_op[2], vel, chan);
-                       /* fallthru */
+                       fallthrough;
                case 0x02:
                        snd_opl3_calc_volume(&vol_op[0], vel, chan);
                        break;
index ce409e75ae51ffc7d5518a7427f8b33db2dfb125..65f9f46c9f583a480c4cbd162365f4752b192c5d 100644 (file)
@@ -247,7 +247,7 @@ static int snd_galaxy_match(struct device *dev, unsigned int n)
                break;
        case 2:
                irq[n] = 9;
-               /* Fall through */
+               fallthrough;
        case 9:
                wss_config[n] |= WSS_CONFIG_IRQ_9;
                break;
@@ -292,7 +292,7 @@ static int snd_galaxy_match(struct device *dev, unsigned int n)
        case 1:
                if (dma1[n] == 0)
                        break;
-               /* Fall through */
+               fallthrough;
        default:
                dev_err(dev, "invalid capture DMA %d\n", dma2[n]);
                return 0;
@@ -322,7 +322,7 @@ mpu:
                break;
        case 2:
                mpu_irq[n] = 9;
-               /* Fall through */
+               fallthrough;
        case 9:
                config[n] |= GALAXY_CONFIG_MPUIRQ_2;
                break;
index 02c566fca9e5671aa57712a8dd2d5a49eb129f29..63633bd41e5b6ccc85168fad989f0e09711e8ab1 100644 (file)
@@ -219,11 +219,9 @@ static int snd_msndmix_set(struct snd_msnd *dev, int d, int left, int right)
        case MSND_MIXER_VOLUME:         /* master volume */
                writew(wLeft, dev->SMA + SMA_wCurrMastVolLeft);
                writew(wRight, dev->SMA + SMA_wCurrMastVolRight);
-               /* fall through */
-
+               fallthrough;
        case MSND_MIXER_AUX:                    /* aux pot control */
                /* scaled by master volume */
-               /* fall through */
 
                /* digital controls */
        case MSND_MIXER_SYNTH:                  /* synth vol (dsp mix) */
index b039429e687171c5cf40fe942383f53acd3f82fa..44ed1b65f6ce80b26e11ad8602618570a3e967c8 100644 (file)
@@ -163,13 +163,13 @@ static int aci_busy_wait(struct snd_miro_aci *aci)
                        switch (timeout-ACI_MINTIME) {
                        case 0 ... 9:
                                out /= 10;
-                               /* fall through */
+                               fallthrough;
                        case 10 ... 19:
                                out /= 10;
-                               /* fall through */
+                               fallthrough;
                        case 20 ... 30:
                                out /= 10;
-                               /* fall through */
+                               fallthrough;
                        default:
                                set_current_state(TASK_UNINTERRUPTIBLE);
                                schedule_timeout(out);
@@ -824,7 +824,7 @@ static unsigned char snd_miro_read(struct snd_miro *chip,
                        retval = inb(chip->mc_base + 9);
                        break;
                }
-               /* fall through */
+               fallthrough;
 
        case OPTi9XX_HW_82C929:
                retval = inb(chip->mc_base + reg);
@@ -854,7 +854,7 @@ static void snd_miro_write(struct snd_miro *chip, unsigned char reg,
                        outb(value, chip->mc_base + 9);
                        break;
                }
-               /* fall through */
+               fallthrough;
 
        case OPTi9XX_HW_82C929:
                outb(value, chip->mc_base + reg);
index 0e6d20e4915854f99517c7cc47dbe5a5dafe0773..881d3b5711d273c8f92563131fb460f920668e16 100644 (file)
@@ -249,7 +249,7 @@ static unsigned char snd_opti9xx_read(struct snd_opti9xx *chip,
                        retval = inb(chip->mc_base + 9);
                        break;
                }
-               /* Fall through */
+               fallthrough;
 
        case OPTi9XX_HW_82C928:
        case OPTi9XX_HW_82C929:
@@ -292,7 +292,7 @@ static void snd_opti9xx_write(struct snd_opti9xx *chip, unsigned char reg,
                        outb(value, chip->mc_base + 9);
                        break;
                }
-               /* Fall through */
+               fallthrough;
 
        case OPTi9XX_HW_82C928:
        case OPTi9XX_HW_82C929:
@@ -343,7 +343,7 @@ static int snd_opti9xx_configure(struct snd_opti9xx *chip,
                snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(4), 0xf0, 0xfc);
                /* enable wave audio */
                snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(6), 0x02, 0x02);
-               /* Fall through */
+               fallthrough;
 
        case OPTi9XX_HW_82C925:
                /* enable WSS mode */
@@ -380,7 +380,8 @@ static int snd_opti9xx_configure(struct snd_opti9xx *chip,
        case OPTi9XX_HW_82C931:
                /* disable 3D sound (set GPIO1 as output, low) */
                snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(20), 0x04, 0x0c);
-               /* fall through */
+               fallthrough;
+
        case OPTi9XX_HW_82C933:
                /*
                 * The BTC 1817DW has QS1000 wavetable which is connected
@@ -392,7 +393,8 @@ static int snd_opti9xx_configure(struct snd_opti9xx *chip,
                 * or digital input signal.
                 */
                snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(26), 0x01, 0x01);
-               /* fall through */
+               fallthrough;
+
        case OPTi9XX_HW_82C930:
                snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(6), 0x02, 0x03);
                snd_opti9xx_write_mask(chip, OPTi9XX_MC_REG(3), 0x00, 0xff);
index e33dfe165276bf44f45e34fc0c99b202fe1a4536..86d0d2fdf48a868f6df3183672267640bc8d3358 100644 (file)
@@ -116,13 +116,13 @@ static int snd_sb8_playback_prepare(struct snd_pcm_substream *substream)
                        chip->playback_format = SB_DSP_HI_OUTPUT_AUTO;
                        break;
                }
-               /* fall through */
+               fallthrough;
        case SB_HW_201:
                if (rate > 23000) {
                        chip->playback_format = SB_DSP_HI_OUTPUT_AUTO;
                        break;
                }
-               /* fall through */
+               fallthrough;
        case SB_HW_20:
                chip->playback_format = SB_DSP_LO_OUTPUT_AUTO;
                break;
@@ -261,7 +261,7 @@ static int snd_sb8_capture_prepare(struct snd_pcm_substream *substream)
                        chip->capture_format = SB_DSP_HI_INPUT_AUTO;
                        break;
                }
-               /* fall through */
+               fallthrough;
        case SB_HW_20:
                chip->capture_format = SB_DSP_LO_INPUT_AUTO;
                break;
@@ -361,7 +361,7 @@ irqreturn_t snd_sb8dsp_interrupt(struct snd_sb *chip)
        case SB_MODE_PLAYBACK_16:       /* ok.. playback is active */
                if (chip->hardware != SB_HW_JAZZ16)
                        break;
-               /* fall through */
+               fallthrough;
        case SB_MODE_PLAYBACK_8:
                substream = chip->playback_substream;
                if (chip->playback_format == SB_DSP_OUTPUT)
@@ -371,7 +371,7 @@ irqreturn_t snd_sb8dsp_interrupt(struct snd_sb *chip)
        case SB_MODE_CAPTURE_16:
                if (chip->hardware != SB_HW_JAZZ16)
                        break;
-               /* fall through */
+               fallthrough;
        case SB_MODE_CAPTURE_8:
                substream = chip->capture_substream;
                if (chip->capture_format == SB_DSP_INPUT)
index 823ccfa089b27d3f1d22f4a2cdf7166e3d7169db..81c6a98307273e24ce53d31d3f68a8d6c9c53d10 100644 (file)
@@ -1449,7 +1449,7 @@ static int FalconMixerIoctl(u_int cmd, u_long arg)
                tt_dmasnd.input_gain =
                        RECLEVEL_VOXWARE_TO_GAIN(data & 0xff) << 4 |
                        RECLEVEL_VOXWARE_TO_GAIN(data >> 8 & 0xff);
-               /* fall through - return set value */
+               fallthrough;    /* return set value */
        case SOUND_MIXER_READ_MIC:
                return IOCTL_OUT(arg,
                        RECLEVEL_GAIN_TO_VOXWARE(tt_dmasnd.input_gain >> 4 & 0xf) |
index f802ea331e244d86a665b1fb2b8ad0b17e8beca5..38f25e97538fa8468a1bdecbae8147abb1168b4e 100644 (file)
@@ -1478,13 +1478,13 @@ static int dmasound_setup(char *str)
                        printk("dmasound_setup: invalid catch radius, using default = %d\n", catchRadius);
                else
                        catchRadius = ints[3];
-               /* fall through */
+               fallthrough;
        case 2:
                if (ints[1] < MIN_BUFFERS)
                        printk("dmasound_setup: invalid number of buffers, using default = %d\n", numWriteBufs);
                else
                        numWriteBufs = ints[1];
-               /* fall through */
+               fallthrough;
        case 1:
                if ((size = ints[2]) < 256) /* check for small buffer specs */
                        size <<= 10 ;
index 6758c072000e67db865fa69a59eac8e1fd3a3c2c..012a7ee849e8aad424e82752c73250b5d0a0d845 100644 (file)
@@ -218,11 +218,11 @@ static int snd_ac97_valid_reg(struct snd_ac97 *ac97, unsigned short reg)
        case AC97_ID_ST_AC97_ID4:
                if (reg == 0x08)
                        return 0;
-               /* fall through */
+               fallthrough;
        case AC97_ID_ST7597:
                if (reg == 0x22 || reg == 0x7a)
                        return 1;
-               /* fall through */
+               fallthrough;
        case AC97_ID_AK4540:
        case AC97_ID_AK4542:
                if (reg <= 0x1c || reg == 0x20 || reg == 0x26 || reg >= 0x7c)
index 85d3b4e954898b68c84e1c0d0f0944e416c208d0..a25d754558028aa0cf4ee18f2c5d6430b660b5f5 100644 (file)
@@ -896,15 +896,15 @@ static int snd_atiixp_playback_prepare(struct snd_pcm_substream *substream)
        case 8:
                data |= ATI_REG_OUT_DMA_SLOT_BIT(10) |
                        ATI_REG_OUT_DMA_SLOT_BIT(11);
-               /* fall through */
+               fallthrough;
        case 6:
                data |= ATI_REG_OUT_DMA_SLOT_BIT(7) |
                        ATI_REG_OUT_DMA_SLOT_BIT(8);
-               /* fall through */
+               fallthrough;
        case 4:
                data |= ATI_REG_OUT_DMA_SLOT_BIT(6) |
                        ATI_REG_OUT_DMA_SLOT_BIT(9);
-               /* fall through */
+               fallthrough;
        default:
                data |= ATI_REG_OUT_DMA_SLOT_BIT(3) |
                        ATI_REG_OUT_DMA_SLOT_BIT(4);
index 58167d8469e1baca6c6afd8a052d95502b638855..77c7030ebbfa9e224b1f25e3fcef3df25d871d86 100644 (file)
@@ -1232,7 +1232,7 @@ snd_azf3328_codec_setfmt(struct snd_azf3328_codec_data *codec,
        case AZF_FREQ_32000: freq = SOUNDFORMAT_FREQ_32000; break;
        default:
                snd_printk(KERN_WARNING "unknown bitrate %d, assuming 44.1kHz!\n", bitrate);
-               /* fall-through */
+               fallthrough;
        case AZF_FREQ_44100: freq = SOUNDFORMAT_FREQ_44100; break;
        case AZF_FREQ_48000: freq = SOUNDFORMAT_FREQ_48000; break;
        case AZF_FREQ_66200: freq = SOUNDFORMAT_FREQ_SUSPECTED_66200; break;
index 31449b7c51c61edeb26c26400dc1c0f076298e0d..e81f42811f455cf1a65a1cb45a2e185a8ea782b0 100644 (file)
@@ -699,7 +699,7 @@ static int pcm_prepare(struct snd_pcm_substream *substream)
                break;
        case SNDRV_PCM_FORMAT_S32_BE:
                format.data_are_bigendian = 1;
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_FORMAT_S32_LE:
                format.bits_per_sample = 32;
                break;
@@ -764,7 +764,7 @@ static int pcm_trigger(struct snd_pcm_substream *substream, int cmd)
                                        pipe->last_counter = 0;
                                        pipe->position = 0;
                                        *pipe->dma_counter = 0;
-                                       /* fall through */
+                                       fallthrough;
                                case PIPE_STATE_PAUSED:
                                        pipe->state = PIPE_STATE_STARTED;
                                        break;
index b934c6ac52dd4a810539ffab55b20ee823d0d6ab..b2ddabb99438138185fd8ee89475b877f5ea2bc3 100644 (file)
@@ -753,7 +753,7 @@ static int snd_emu10k1_playback_trigger(struct snd_pcm_substream *substream,
        case SNDRV_PCM_TRIGGER_START:
                snd_emu10k1_playback_invalidate_cache(emu, 1, epcm->extra);     /* do we need this? */
                snd_emu10k1_playback_invalidate_cache(emu, 0, epcm->voices[0]);
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
        case SNDRV_PCM_TRIGGER_RESUME:
                if (cmd == SNDRV_PCM_TRIGGER_PAUSE_RELEASE)
@@ -902,8 +902,7 @@ static int snd_emu10k1_efx_playback_trigger(struct snd_pcm_substream *substream,
                        snd_emu10k1_playback_invalidate_cache(emu, 0, epcm->voices[i]);
                }
                snd_emu10k1_playback_invalidate_cache(emu, 1, epcm->extra);
-
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
        case SNDRV_PCM_TRIGGER_RESUME:
                snd_emu10k1_playback_prepare_voice(emu, epcm->extra, 1, 1, NULL);
index 841523f6b88de62267268b3414977174e657b777..53a2b89f8983ce4f1e2733d62836f68f09668429 100644 (file)
@@ -102,7 +102,7 @@ static int snd_hda_beep_event(struct input_dev *dev, unsigned int type,
        case SND_BELL:
                if (hz)
                        hz = 1000;
-               /* fallthru */
+               fallthrough;
        case SND_TONE:
                if (beep->linear_tone)
                        beep->tone = beep_linear_tone(beep, hz);
index d796963b80d7fcbeb1b32931ff8b687c5936a8bd..be5000dd158532bbecf342fc7f823153e62cd8b7 100644 (file)
@@ -1018,7 +1018,7 @@ static int patch_conexant_auto(struct hda_codec *codec)
                break;
        case 0x14f150f2:
                codec->power_save_node = 1;
-               /* Fall through */
+               fallthrough;
        default:
                codec->pin_amp_workaround = 1;
                snd_hda_pick_fixup(codec, cxt5066_fixup_models,
index 53e0eef8b042f7b8ba352e0780d2233138b96100..3ce63643eaf9d4a3be23f118c1ff51e7b6762497 100644 (file)
@@ -382,7 +382,7 @@ static void alc_fill_eapd_coef(struct hda_codec *codec)
        case 0x10ec0295:
        case 0x10ec0299:
                alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
-               /* fallthrough */
+               fallthrough;
        case 0x10ec0215:
        case 0x10ec0233:
        case 0x10ec0235:
@@ -4697,7 +4697,7 @@ static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
                break;
        case 0x10ec0867:
                alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
-               /* fallthru */
+               fallthrough;
        case 0x10ec0221:
        case 0x10ec0662:
                snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
index 81929063b2fad4040934b8ec35960270ea11c0cc..1d2a0287284b5058bc603b6dbdfe27d61353d4aa 100644 (file)
@@ -691,7 +691,7 @@ static int snd_ice1712_delta_init(struct snd_ice1712 *ice)
                break;
        case ICE1712_SUBDEVICE_DELTADIO2496:
                ice->gpio.set_pro_rate = delta_1010_set_rate_val;
-               /* fall thru */
+               fallthrough;
        case ICE1712_SUBDEVICE_DELTA66:
                ice->spdif.ops.open = delta_open_spdif;
                ice->spdif.ops.setup_rate = delta_setup_spdif;
index 1781a1c081c3d4f986facbc3063eedb2f680692a..675bb0da00a0e015b8bdf2e7896ba50f95e04547 100644 (file)
@@ -810,7 +810,7 @@ static int snd_intel8x0_pcm_trigger(struct snd_pcm_substream *substream, int cmd
        switch (cmd) {
        case SNDRV_PCM_TRIGGER_RESUME:
                ichdev->suspended = 0;
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_START:
        case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
                val = ICH_IOCE | ICH_STARTBM;
@@ -818,7 +818,7 @@ static int snd_intel8x0_pcm_trigger(struct snd_pcm_substream *substream, int cmd
                break;
        case SNDRV_PCM_TRIGGER_SUSPEND:
                ichdev->suspended = 1;
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_STOP:
                val = 0;
                break;
@@ -852,7 +852,7 @@ static int snd_intel8x0_ali_trigger(struct snd_pcm_substream *substream, int cmd
        switch (cmd) {
        case SNDRV_PCM_TRIGGER_RESUME:
                ichdev->suspended = 0;
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_START:
        case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
                if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
@@ -869,7 +869,7 @@ static int snd_intel8x0_ali_trigger(struct snd_pcm_substream *substream, int cmd
                break;
        case SNDRV_PCM_TRIGGER_SUSPEND:
                ichdev->suspended = 1;
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_STOP:
        case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
                /* pause */
index 7ba487443c7f7b62dfb202ff1c5a2d3c2c6d6db5..efff220b26ea7cf27f11cfe9b8e4b251e778c3de 100644 (file)
@@ -169,7 +169,7 @@ static int mixart_set_clock(struct mixart_mgr *mgr,
        case PIPE_RUNNING:
                if(rate != 0)
                        break;
-               /* fall through */
+               fallthrough;
        default:
                if(rate == 0)
                        return 0; /* nothing to do */
index 048a2660d18d4df27aaa8e2bdaf0dfd79e9ebf1f..0bdd33b0af654b87999ef5b37038f8fcdf307802 100644 (file)
@@ -527,7 +527,7 @@ irqreturn_t snd_mixart_threaded_irq(int irq, void *dev_id)
                                dev_err(&mgr->pci->dev,
                                        "canceled notification %x !\n", msg);
                        }
-                       /* fall through */
+                       fallthrough;
                case MSG_TYPE_ANSWER:
                        /* answer or notification to a message we are waiting for*/
                        mutex_lock(&mgr->msg_lock);
index ebce4d259e06937adf9500f7990cc7122f7966f7..240195e85e3d31ea65733564102a11331f4594b3 100644 (file)
@@ -560,7 +560,7 @@ snd_nm256_playback_trigger(struct snd_pcm_substream *substream, int cmd)
        switch (cmd) {
        case SNDRV_PCM_TRIGGER_RESUME:
                s->suspended = 0;
-               /* fallthru */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_START:
                if (! s->running) {
                        snd_nm256_playback_start(chip, s, substream);
@@ -569,7 +569,7 @@ snd_nm256_playback_trigger(struct snd_pcm_substream *substream, int cmd)
                break;
        case SNDRV_PCM_TRIGGER_SUSPEND:
                s->suspended = 1;
-               /* fallthru */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_STOP:
                if (s->running) {
                        snd_nm256_playback_stop(chip);
@@ -1664,7 +1664,7 @@ static int snd_nm256_probe(struct pci_dev *pci,
                        return -ENODEV;
                case NM_RESET_WORKAROUND_2:
                        reset_workaround_2 = 1;
-                       /* Fall-through */
+                       fallthrough;
                case NM_RESET_WORKAROUND:
                        reset_workaround = 1;
                        break;
index db7d76a3cfeb75aa2879bb4e96d6f263e1305fa2..cacc6a9d14c8b685b073bdeff5cb8529a5305e73 100644 (file)
@@ -400,7 +400,7 @@ static int snd_ymfpci_playback_trigger(struct snd_pcm_substream *substream,
                        kctl = chip->pcm_mixer[substream->number].ctl;
                        kctl->vd[0].access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
                }
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
        case SNDRV_PCM_TRIGGER_SUSPEND:
                chip->ctrl_playback[ypcm->voices[0]->number + 1] = 0;
index 6cbe5cb3435828c9489bac72b9981975ec568ed8..dfc4295b69c413a5164a932d98f9f38313aa8126 100644 (file)
@@ -45,7 +45,7 @@ static int pdacf_pcm_trigger(struct snd_pcm_substream *subs, int cmd)
        case SNDRV_PCM_TRIGGER_START:
                chip->pcm_hwptr = 0;
                chip->pcm_tdone = 0;
-               /* fall thru */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
        case SNDRV_PCM_TRIGGER_RESUME:
                mask = 0;
@@ -132,7 +132,7 @@ static int pdacf_pcm_prepare(struct snd_pcm_substream *subs)
        case SNDRV_PCM_FORMAT_S24_3LE:
        case SNDRV_PCM_FORMAT_S24_3BE:
                chip->pcm_sample = 3;
-               /* fall through */
+               fallthrough;
        default: /* 24-bit */
                aval = AK4117_DIF_24R;
                chip->pcm_frame = 3;
index cf70499992619bd59cb0eb5a3c5afc7b6b39a1b9..17b79d45d17f66406e4bff6b05c328715c5edb70 100644 (file)
@@ -580,16 +580,16 @@ static __u32 reverse_bytes(__u32 b, int len)
        switch (len) {
        case 32:
                b = ((b & 0xffff0000) >> 16) | ((b & 0x0000ffff) << 16);
-               /* fall through */
+               fallthrough;
        case 16:
                b = ((b & 0xff00ff00) >> 8) | ((b & 0x00ff00ff) << 8);
-               /* fall through */
+               fallthrough;
        case 8:
                b = ((b & 0xf0f0f0f0) >> 4) | ((b & 0x0f0f0f0f) << 4);
-               /* fall through */
+               fallthrough;
        case 4:
                b = ((b & 0xcccccccc) >> 2) | ((b & 0x33333333) << 2);
-               /* fall through */
+               fallthrough;
        case 2:
                b = ((b & 0xaaaaaaaa) >> 1) | ((b & 0x55555555) << 1);
        case 1:
index 162bdd6eb4d4ba98f7b7281c73ddb20d7d75af83..696e788c5d311ffca1cd90942bafe179288b28fd 100644 (file)
@@ -230,7 +230,7 @@ static int snd_usb_create_streams(struct snd_usb_audio *chip, int ctrlif)
                dev_warn(&dev->dev,
                         "unknown interface protocol %#02x, assuming v1\n",
                         protocol);
-               /* fall through */
+               fallthrough;
 
        case UAC_VERSION_1: {
                struct uac1_ac_header_descriptor *h1;
index b118cf97607f3d24a68c84e7e1e2a456ca1cdc6f..f3ca59005d9143fcd37aa971294f065681d3fe2c 100644 (file)
@@ -670,7 +670,7 @@ int snd_usb_init_sample_rate(struct snd_usb_audio *chip, int iface,
                        else
                                return 0;
                }
-       /* fall through */
+               fallthrough;
        case UAC_VERSION_2:
                return set_sample_rate_v2v3(chip, iface, alts, fmt, rate);
        }
index 2b47f7f66bfb986724ef8206b30449e8d92b43c8..25b026ba770f63a5ec5d1076f6df9aa88c282f95 100644 (file)
@@ -1742,7 +1742,7 @@ static int snd_usb_substream_playback_trigger(struct snd_pcm_substream *substrea
        switch (cmd) {
        case SNDRV_PCM_TRIGGER_START:
                subs->trigger_tstamp_pending_update = true;
-               /* fall through */
+               fallthrough;
        case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
                subs->data_endpoint->prepare_data_urb = prepare_playback_urb;
                subs->data_endpoint->retire_data_urb = retire_playback_urb;
index 15296f2c902cd358f923663fefacaf0dca5171b6..4d1e6579e54dcb1cdbc9aa245b5b6bb157f1f69d 100644 (file)
@@ -1146,9 +1146,8 @@ static int __snd_usb_parse_audio_interface(struct snd_usb_audio *chip,
                        dev_dbg(&dev->dev, "%u:%d: unknown interface protocol %#02x, assuming v1\n",
                                iface_no, altno, protocol);
                        protocol = UAC_VERSION_1;
-                       /* fall through */
+                       fallthrough;
                case UAC_VERSION_1:
-                       /* fall through */
                case UAC_VERSION_2: {
                        int bm_quirk = 0;