From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753621AbdK2BqO (ORCPT ); Tue, 28 Nov 2017 20:46:14 -0500 Received: from mail-pl0-f66.google.com ([209.85.160.66]:33816 "EHLO mail-pl0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753090AbdK2BqG (ORCPT ); Tue, 28 Nov 2017 20:46:06 -0500 X-Google-Smtp-Source: AGs4zMYspWoiNE0xHbh0lXp410oXdP4HfhJhiNWx0bPVwTD/9yryGiNj+orOwal39z68+ety1NUpSA== Date: Tue, 28 Nov 2017 17:46:13 -0800 From: Nicolin Chen To: "Maciej S. Szmigiero" Cc: Timur Tabi , Xiubo Li , Fabio Estevam , Liam Girdwood , Mark Brown , Jaroslav Kysela , Takashi Iwai , alsa-devel@alsa-project.org, linuxppc-dev@lists.ozlabs.org, linux-kernel Subject: Re: [PATCH v2 2/2] ASoC: fsl_ssi: call _fsl_ssi_set_dai_fmt() just once in AC'97 mode Message-ID: <20171129014612.GB7918@Asurada-Nvidia> References: <5c2325bd-3e7b-0026-4c1a-65f32737a74a@maciej.szmigiero.name> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5c2325bd-3e7b-0026-4c1a-65f32737a74a@maciej.szmigiero.name> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 22, 2017 at 12:55:14AM +0100, Maciej S. Szmigiero wrote: > In AC'97 mode we configure and start SSI RX / TX on probe path via > a call to _fsl_ssi_set_dai_fmt() function. > We don't need to call this function again later and in fact don't want to > do it since this function temporarily sets STCR, SRCR and SCR to some > intermediate values. > > Signed-off-by: Maciej S. Szmigiero Acked-by: Nicolin Chen > --- > Changes from v1: The SACCST setup code was split out into a separate > commit. > > sound/soc/fsl/fsl_ssi.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/sound/soc/fsl/fsl_ssi.c b/sound/soc/fsl/fsl_ssi.c > index 375aaaf6080d..70df6bf832df 100644 > --- a/sound/soc/fsl/fsl_ssi.c > +++ b/sound/soc/fsl/fsl_ssi.c > @@ -1116,6 +1116,9 @@ static int fsl_ssi_set_dai_fmt(struct snd_soc_dai *cpu_dai, unsigned int fmt) > { > struct fsl_ssi_private *ssi_private = snd_soc_dai_get_drvdata(cpu_dai); > > + if (fsl_ssi_is_ac97(ssi_private)) > + return 0; > + > return _fsl_ssi_set_dai_fmt(cpu_dai->dev, ssi_private, fmt); > } > >