From 7a370776f1f930abd07580fbef502a73899bcfe4 Mon Sep 17 00:00:00 2001 From: Jaehoon Chung Date: Tue, 20 Dec 2022 20:12:42 +0900 Subject: [PATCH] AsoC: ac108: revert use of fallthrough pseudo-keywoard This reverts commit 6a9dc5fd6170 ("lib: Revert use of fallthrough pseudo-keyword in lib/") Now, use the fallthrough instead of /* fall through */ Change-Id: I1199d05f5830aa169f393c51310d4cbd699c79b1 Signed-off-by: Jaehoon Chung --- sound/soc/codecs/ac108.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/soc/codecs/ac108.c b/sound/soc/codecs/ac108.c index 4462812..1e2003f 100644 --- a/sound/soc/codecs/ac108.c +++ b/sound/soc/codecs/ac108.c @@ -868,7 +868,7 @@ static int ac108_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) { /* TODO: Both cpu_dai and codec_dai(AC108) be set as slave in DTS */ dev_dbg(dai->dev, "used as slave when AC101 is master\n"); } - /* fall through */ + fallthrough; case SND_SOC_DAIFMT_CBS_CFS: /*AC108 Slave*/ dev_dbg(dai->dev, "AC108 set to work as Slave\n"); /** -- 2.7.4