alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
From: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
	Oder Chiou <oder_chiou@realtek.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	Mark Brown <broonie@kernel.org>, Jaroslav Kysela <perex@perex.cz>,
	Takashi Iwai <tiwai@suse.com>,
	alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 01/12] ASoC: codecs: rt1308: do not store status in state container
Date: Wed, 17 May 2023 08:27:22 -0500	[thread overview]
Message-ID: <8f9eb906-d8a4-8675-496b-4f7de15f1cbe@linux.intel.com> (raw)
In-Reply-To: <20230517111416.424420-1-krzysztof.kozlowski@linaro.org>



On 5/17/23 06:14, Krzysztof Kozlowski wrote:
> Driver in its update status callback stores Soundwire device status in
> state container but it never uses it later.  Simplify the code a bit.
> 
> Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

Good cleanup, not sure why we added this internal status many moons ago.

There's already a slave->status that's updated in
drivers/soundwire/bus.c, fewer state variables are better and in this
case there's no reason to keep a value that could be stale.

For the series

Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>

> ---
>  sound/soc/codecs/rt1308-sdw.c | 5 +----
>  sound/soc/codecs/rt1308-sdw.h | 1 -
>  2 files changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/sound/soc/codecs/rt1308-sdw.c b/sound/soc/codecs/rt1308-sdw.c
> index 1797af824f60..313e97c94532 100644
> --- a/sound/soc/codecs/rt1308-sdw.c
> +++ b/sound/soc/codecs/rt1308-sdw.c
> @@ -304,9 +304,6 @@ static int rt1308_update_status(struct sdw_slave *slave,
>  {
>  	struct  rt1308_sdw_priv *rt1308 = dev_get_drvdata(&slave->dev);
>  
> -	/* Update the status */
> -	rt1308->status = status;
> -
>  	if (status == SDW_SLAVE_UNATTACHED)
>  		rt1308->hw_init = false;
>  
> @@ -314,7 +311,7 @@ static int rt1308_update_status(struct sdw_slave *slave,
>  	 * Perform initialization only if slave status is present and
>  	 * hw_init flag is false
>  	 */
> -	if (rt1308->hw_init || rt1308->status != SDW_SLAVE_ATTACHED)
> +	if (rt1308->hw_init || status != SDW_SLAVE_ATTACHED)
>  		return 0;
>  
>  	/* perform I/O transfers required for Slave initialization */
> diff --git a/sound/soc/codecs/rt1308-sdw.h b/sound/soc/codecs/rt1308-sdw.h
> index 04ff18fa18e2..f816c73e247e 100644
> --- a/sound/soc/codecs/rt1308-sdw.h
> +++ b/sound/soc/codecs/rt1308-sdw.h
> @@ -159,7 +159,6 @@ struct rt1308_sdw_priv {
>  	struct snd_soc_component *component;
>  	struct regmap *regmap;
>  	struct sdw_slave *sdw_slave;
> -	enum sdw_slave_status status;
>  	struct sdw_bus_params params;
>  	bool hw_init;
>  	bool first_hw_init;

  parent reply	other threads:[~2023-05-17 14:13 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-17 11:14 [PATCH 01/12] ASoC: codecs: rt1308: do not store status in state container Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 02/12] ASoC: codecs: rt1316: " Krzysztof Kozlowski
2023-05-17 14:40   ` Mark Brown
2023-05-17 11:14 ` [PATCH 03/12] ASoC: codecs: rt1318: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 04/12] ASoC: codecs: rt5682: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 05/12] ASoC: codecs: rt700: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 06/12] ASoC: codecs: rt711-sdca: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 07/12] ASoC: codecs: rt711: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 08/12] ASoC: codecs: rt712-sdca-dmic: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 09/12] ASoC: codecs: rt712-sdca: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 10/12] ASoC: codecs: rt715-sdca: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 11/12] ASoC: codecs: rt715: " Krzysztof Kozlowski
2023-05-17 11:14 ` [PATCH 12/12] ASoC: codecs: rt722-sdca: " Krzysztof Kozlowski
2023-05-17 13:27 ` Pierre-Louis Bossart [this message]
2023-05-18 17:20 ` [PATCH 01/12] ASoC: codecs: rt1308: " Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8f9eb906-d8a4-8675-496b-4f7de15f1cbe@linux.intel.com \
    --to=pierre-louis.bossart@linux.intel.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=krzysztof.kozlowski@linaro.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=oder_chiou@realtek.com \
    --cc=perex@perex.cz \
    --cc=tiwai@suse.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).