From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH 1/5] ASoC: adau1761: Use the standard fall-through annotation Date: Thu, 04 Oct 2018 20:39:11 +0200 Message-ID: References: <20181004183006.23983-1-tiwai@suse.de> <20181004183006.23983-2-tiwai@suse.de> <6342c80c-7d4e-74d5-f5e9-9353e83c7e5c@metafoo.de> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx1.suse.de (mx2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id 7A8A6267845 for ; Thu, 4 Oct 2018 20:39:11 +0200 (CEST) In-Reply-To: <6342c80c-7d4e-74d5-f5e9-9353e83c7e5c@metafoo.de> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Lars-Peter Clausen Cc: Oder Chiou , alsa-devel@alsa-project.org, Jie Yang , Liam Girdwood , Pierre-Louis Bossart , Mark Brown , Bard Liao List-Id: alsa-devel@alsa-project.org On Thu, 04 Oct 2018 20:34:20 +0200, Lars-Peter Clausen wrote: > > On 10/04/2018 08:30 PM, Takashi Iwai wrote: > > As a preparatory patch for the upcoming -Wimplicit-fallthrough > > compiler checks, replace with the standard "fall through" annotation > > at the right place. It has to be put right before the next label. > > > > Signed-off-by: Takashi Iwai > > Looks good, but somebody else already sent the same awhile ago. I'm not > sure, maybe it did not get picked up: > https://patchwork.kernel.org/patch/10560465/? Yeah, seems to have slipped from Mark's hands. I don't mind which patch is taken, of course. thanks, Takashi > > > --- > > sound/soc/codecs/adau1761.c | 3 ++- > > 1 file changed, 2 insertions(+), 1 deletion(-) > > > > diff --git a/sound/soc/codecs/adau1761.c b/sound/soc/codecs/adau1761.c > > index be136e981653..bef3e9e74c26 100644 > > --- a/sound/soc/codecs/adau1761.c > > +++ b/sound/soc/codecs/adau1761.c > > @@ -518,7 +518,8 @@ static int adau1761_setup_digmic_jackdetect(struct snd_soc_component *component) > > ARRAY_SIZE(adau1761_jack_detect_controls)); > > if (ret) > > return ret; > > - case ADAU1761_DIGMIC_JACKDET_PIN_MODE_NONE: /* fallthrough */ > > + /* fall through */ > > + case ADAU1761_DIGMIC_JACKDET_PIN_MODE_NONE: > > ret = snd_soc_dapm_add_routes(dapm, adau1761_no_dmic_routes, > > ARRAY_SIZE(adau1761_no_dmic_routes)); > > if (ret) > > >