diff options
author | Gustavo A. R. Silva <gustavoars@kernel.org> | 2021-07-13 14:58:18 -0500 |
---|---|---|
committer | Gustavo A. R. Silva <gustavoars@kernel.org> | 2021-07-13 14:58:18 -0500 |
commit | 4796372e7c117b84bfd929526f48e23c79030dcd (patch) | |
tree | 72e5947ff512c1a00887740b7ab292dd85af095d /sound/soc | |
parent | b51883d47d37c3f3fa80d6bcd8cc3a57d5b95130 (diff) | |
download | linux-4796372e7c117b84bfd929526f48e23c79030dcd.tar.bz2 |
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/soc')
-rw-r--r-- | sound/soc/mediatek/mt8183/mt8183-dai-adda.c | 1 |
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; } |