[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <81c25623-8689-759a-026e-b49190bc19cf@linux.intel.com>
Date: Mon, 30 Jan 2023 15:28:22 +0200
From: Péter Ujfalusi <peter.ujfalusi@...ux.intel.com>
To: Venkata Prasad Potturu <venkataprasad.potturu@....com>,
broonie@...nel.org, alsa-devel@...a-project.org
Cc: Sunil-kumar.Dommati@....com, ssabakar@....com,
Ajit Kumar Pandey <AjitKumar.Pandey@....com>,
ye xingchen <ye.xingchen@....com.cn>,
Basavaraj.Hiregoudar@....com, Takashi Iwai <tiwai@...e.com>,
Liam Girdwood <lgirdwood@...il.com>,
Jia-Ju Bai <baijiaju1990@...il.com>,
Akihiko Odaki <akihiko.odaki@...il.com>,
Vijendar.Mukunda@....com,
V sujith kumar Reddy <Vsujithkumar.Reddy@....com>,
open list <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH] ASoC: amd: acp: Refactor bit width calculation
On 30/01/2023 12:01, Venkata Prasad Potturu wrote:
> Refactor bit width calculation using params_physical_width()
> instead hard-code values.
I would have added a Reported-by tag for Pierre...
A Fixes tag might also help this patch to follow
ca9d237994db ("ASoC: amd: acp: Refactor i2s clocks programming sequence")
Reviewed-by: Peter Ujfalusi <peter.ujfalusi@...ux.intel.com>
> Signed-off-by: Venkata Prasad Potturu <venkataprasad.potturu@....com>
> ---
> sound/soc/amd/acp/acp-mach-common.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/sound/soc/amd/acp/acp-mach-common.c b/sound/soc/amd/acp/acp-mach-common.c
> index b83ae946b3e4..b4dcce4fbae9 100644
> --- a/sound/soc/amd/acp/acp-mach-common.c
> +++ b/sound/soc/amd/acp/acp-mach-common.c
> @@ -186,7 +186,7 @@ static int acp_card_rt5682_hw_params(struct snd_pcm_substream *substream,
>
> srate = params_rate(params);
> ch = params_channels(params);
> - format = 8 * params_format(params);
> + format = params_physical_width(params);
>
> if (drvdata->tdm_mode)
> fmt = SND_SOC_DAIFMT_DSP_A;
> @@ -330,7 +330,7 @@ static int acp_card_rt5682s_hw_params(struct snd_pcm_substream *substream,
>
> srate = params_rate(params);
> ch = params_channels(params);
> - format = 8 * params_format(params);
> + format = params_physical_width(params);
>
> if (drvdata->tdm_mode)
> fmt = SND_SOC_DAIFMT_DSP_A;
> @@ -475,7 +475,7 @@ static int acp_card_rt1019_hw_params(struct snd_pcm_substream *substream,
>
> srate = params_rate(params);
> ch = params_channels(params);
> - format = 8 * params_format(params);
> + format = params_physical_width(params);
>
> if (drvdata->amp_codec_id != RT1019)
> return -EINVAL;
> @@ -616,7 +616,7 @@ static int acp_card_maxim_hw_params(struct snd_pcm_substream *substream,
>
> srate = params_rate(params);
> ch = params_channels(params);
> - format = 8 * params_format(params);
> + format = params_physical_width(params);
>
> if (drvdata->tdm_mode)
> fmt = SND_SOC_DAIFMT_DSP_A;
--
Péter
Powered by blists - more mailing lists