[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <10062d09-34c8-4e53-b5d7-f96a5b19f6f8@intel.com>
Date: Thu, 28 Nov 2024 13:55:18 +0100
From: Cezary Rojewski <cezary.rojewski@...el.com>
To: Marek Maslanka <mmaslanka@...gle.com>, LKML <linux-kernel@...r.kernel.org>
CC: Liam Girdwood <liam.r.girdwood@...ux.intel.com>, Peter Ujfalusi
<peter.ujfalusi@...ux.intel.com>, Bard Liao
<yung-chuan.liao@...ux.intel.com>, Ranjani Sridharan
<ranjani.sridharan@...ux.intel.com>, Kai Vehmanen
<kai.vehmanen@...ux.intel.com>, Pierre-Louis Bossart
<pierre-louis.bossart@...ux.dev>, Mark Brown <broonie@...nel.org>, "Jaroslav
Kysela" <perex@...ex.cz>, Takashi Iwai <tiwai@...e.com>,
Amadeusz Sławiński
<amadeuszx.slawinski@...ux.intel.com>, <alsa-devel@...a-project.org>,
<linux-sound@...r.kernel.org>
Subject: Re: [PATCH] ASoC: Intel: avs: Remove component->set_jack() on
suspend/resume
On 2024-11-28 1:27 PM, Marek Maslanka wrote:
> Removed calls to component->set_jack() during suspend/resume to fix an issue where an inserted jack
> is not detected after resuming from suspend if the jack was inserted before suspend. This problem is
> caused by calls to the sound/soc/codecs/da7219-aad.c:da7219_aad_jack_det() function during resume,
> which forces the jack insertion state to be unplugged.
The code looks good, let's work on title and message a bit. Note, I'd
suggest the message to meet 72chars-per-line so it's cohesive with the
rest of the avs-driver log.
Title, I'd suggest:
ASoC: Intel: avs: da7219: Remove suspend_pre() and resume_post()
Message, please note that any [PATCH] is only a suggestion, "Removed"
implies something has already been done. That is certainly not the case
until the subsystem maintainer, here, Mark, merges the change.
What I'd so is: shortly state the problem, remove "what", leave "why".
The rest is answered by title while the code tells the rest of the story.
Kind regards,
Czarek
> Signed-off-by: Marek Maslanka <mmaslanka@...gle.com>
>
> ---
> sound/soc/intel/avs/boards/da7219.c | 17 -----------------
> 1 file changed, 17 deletions(-)
>
> diff --git a/sound/soc/intel/avs/boards/da7219.c b/sound/soc/intel/avs/boards/da7219.c
> index 80c0a1a956542..daf53ca490a14 100644
> --- a/sound/soc/intel/avs/boards/da7219.c
> +++ b/sound/soc/intel/avs/boards/da7219.c
> @@ -211,21 +211,6 @@ static int avs_create_dai_link(struct device *dev, const char *platform_name, in
> return 0;
> }
>
> -static int avs_card_suspend_pre(struct snd_soc_card *card)
> -{
> - struct snd_soc_dai *codec_dai = snd_soc_card_get_codec_dai(card, DA7219_DAI_NAME);
> -
> - return snd_soc_component_set_jack(codec_dai->component, NULL, NULL);
> -}
> -
> -static int avs_card_resume_post(struct snd_soc_card *card)
> -{
> - struct snd_soc_dai *codec_dai = snd_soc_card_get_codec_dai(card, DA7219_DAI_NAME);
> - struct snd_soc_jack *jack = snd_soc_card_get_drvdata(card);
> -
> - return snd_soc_component_set_jack(codec_dai->component, jack, NULL);
> -}
> -
> static int avs_da7219_probe(struct platform_device *pdev)
> {
> struct snd_soc_dai_link *dai_link;
> @@ -257,8 +242,6 @@ static int avs_da7219_probe(struct platform_device *pdev)
> card->name = "avs_da7219";
> card->dev = dev;
> card->owner = THIS_MODULE;
> - card->suspend_pre = avs_card_suspend_pre;
> - card->resume_post = avs_card_resume_post;
> card->dai_link = dai_link;
> card->num_links = 1;
> card->controls = card_controls;
Powered by blists - more mailing lists