diff options
Diffstat (limited to 'sound/soc/meson/axg-tdm-interface.c')
| -rw-r--r-- | sound/soc/meson/axg-tdm-interface.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/sound/soc/meson/axg-tdm-interface.c b/sound/soc/meson/axg-tdm-interface.c index 36df30915378..c8664ab80d45 100644 --- a/sound/soc/meson/axg-tdm-interface.c +++ b/sound/soc/meson/axg-tdm-interface.c @@ -58,17 +58,17 @@ int axg_tdm_set_tdm_slots(struct snd_soc_dai *dai, u32 *tx_mask,  	switch (slot_width) {  	case 0:  		slot_width = 32; -		/* Fall-through */ +		fallthrough;  	case 32:  		fmt |= SNDRV_PCM_FMTBIT_S32_LE; -		/* Fall-through */ +		fallthrough;  	case 24:  		fmt |= SNDRV_PCM_FMTBIT_S24_LE;  		fmt |= SNDRV_PCM_FMTBIT_S20_LE; -		/* Fall-through */ +		fallthrough;  	case 16:  		fmt |= SNDRV_PCM_FMTBIT_S16_LE; -		/* Fall-through */ +		fallthrough;  	case 8:  		fmt |= SNDRV_PCM_FMTBIT_S8;  		break; @@ -133,7 +133,7 @@ static int axg_tdm_iface_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)  	case SND_SOC_DAIFMT_CBS_CFM:  	case SND_SOC_DAIFMT_CBM_CFS:  		dev_err(dai->dev, "only CBS_CFS and CBM_CFM are supported\n"); -		/* Fall-through */ +		fallthrough;  	default:  		return -EINVAL;  	}  |