aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorGustavo A. R. Silva <gustavoars@kernel.org>2021-07-13 14:58:18 -0500
committerGustavo A. R. Silva <gustavoars@kernel.org>2021-07-13 14:58:18 -0500
commit4796372e7c117b84bfd929526f48e23c79030dcd (patch)
tree72e5947ff512c1a00887740b7ab292dd85af095d /sound
parentpower: supply: Fix fall-through warnings for Clang (diff)
downloadlinux-dev-4796372e7c117b84bfd929526f48e23c79030dcd.tar.xz
linux-dev-4796372e7c117b84bfd929526f48e23c79030dcd.zip
ASoC: Mediatek: MT8183: Fix fall-through warning for Clang
Fix the following fallthrough warning: sound/soc/mediatek/mt8183/mt8183-dai-adda.c:342:2: warning: unannotated fall-through between switch labels [-Wimplicit-fallthrough] Reported-by: Nathan Chancellor <nathan@kernel.org> Signed-off-by: Gustavo A. R. Silva <gustavoars@kernel.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/soc/mediatek/mt8183/mt8183-dai-adda.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sound/soc/mediatek/mt8183/mt8183-dai-adda.c b/sound/soc/mediatek/mt8183/mt8183-dai-adda.c
index 2b758a18c2ea..5b8a274419ed 100644
--- a/sound/soc/mediatek/mt8183/mt8183-dai-adda.c
+++ b/sound/soc/mediatek/mt8183/mt8183-dai-adda.c
@@ -341,6 +341,7 @@ static int set_mtkaif_rx(struct mtk_base_afe *afe)
case MT8183_MTKAIF_PROTOCOL_1:
regmap_write(afe->regmap, AFE_AUD_PAD_TOP, 0x31);
regmap_write(afe->regmap, AFE_ADDA_MTKAIF_CFG0, 0x0);
+ break;
default:
break;
}